home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / cp / parse.c < prev    next >
C/C++ Source or Header  |  1994-10-14  |  336KB  |  7,699 lines

  1.  
  2. /*  A Bison parser, made from parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    IF    268
  18. #define    ELSE    269
  19. #define    WHILE    270
  20. #define    DO    271
  21. #define    FOR    272
  22. #define    SWITCH    273
  23. #define    CASE    274
  24. #define    DEFAULT    275
  25. #define    BREAK    276
  26. #define    CONTINUE    277
  27. #define    RETURN    278
  28. #define    GOTO    279
  29. #define    ASM_KEYWORD    280
  30. #define    GCC_ASM_KEYWORD    281
  31. #define    TYPEOF    282
  32. #define    ALIGNOF    283
  33. #define    HEADOF    284
  34. #define    CLASSOF    285
  35. #define    SIGOF    286
  36. #define    ATTRIBUTE    287
  37. #define    EXTENSION    288
  38. #define    LABEL    289
  39. #define    AGGR    290
  40. #define    VISSPEC    291
  41. #define    DELETE    292
  42. #define    NEW    293
  43. #define    OVERLOAD    294
  44. #define    THIS    295
  45. #define    OPERATOR    296
  46. #define    CXX_TRUE    297
  47. #define    CXX_FALSE    298
  48. #define    LEFT_RIGHT    299
  49. #define    TEMPLATE    300
  50. #define    TYPEID    301
  51. #define    DYNAMIC_CAST    302
  52. #define    STATIC_CAST    303
  53. #define    REINTERPRET_CAST    304
  54. #define    CONST_CAST    305
  55. #define    SCOPE    306
  56. #define    EMPTY    307
  57. #define    PTYPENAME    308
  58. #define    ASSIGN    309
  59. #define    OROR    310
  60. #define    ANDAND    311
  61. #define    MIN_MAX    312
  62. #define    EQCOMPARE    313
  63. #define    ARITHCOMPARE    314
  64. #define    LSHIFT    315
  65. #define    RSHIFT    316
  66. #define    POINTSAT_STAR    317
  67. #define    DOT_STAR    318
  68. #define    UNARY    319
  69. #define    PLUSPLUS    320
  70. #define    MINUSMINUS    321
  71. #define    HYPERUNARY    322
  72. #define    PAREN_STAR_PAREN    323
  73. #define    POINTSAT    324
  74. #define    TRY    325
  75. #define    CATCH    326
  76. #define    THROW    327
  77. #define    TYPENAME_ELLIPSIS    328
  78. #define    PRE_PARSED_FUNCTION_DECL    329
  79. #define    EXTERN_LANG_STRING    330
  80. #define    ALL    331
  81. #define    PRE_PARSED_CLASS_DECL    332
  82. #define    TYPENAME_DEFN    333
  83. #define    IDENTIFIER_DEFN    334
  84. #define    PTYPENAME_DEFN    335
  85. #define    END_OF_SAVED_INPUT    336
  86.  
  87. #line 42 "parse.y"
  88.  
  89. /* Cause the `yydebug' variable to be defined.  */
  90. #define YYDEBUG 1
  91.  
  92. #include "config.h"
  93.  
  94. #include <stdio.h>
  95. #include <errno.h>
  96.  
  97. #include "tree.h"
  98. #include "input.h"
  99. #include "flags.h"
  100. #include "lex.h"
  101. #include "cp-tree.h"
  102.  
  103. /* Since parsers are distinct for each language, put the language string
  104.    definition here.  (fnf) */
  105. char *language_string = "GNU C++";
  106.  
  107. extern tree void_list_node;
  108. extern struct obstack permanent_obstack;
  109.  
  110. #ifndef errno
  111. extern int errno;
  112. #endif
  113.  
  114. extern int end_of_file;
  115. extern int current_class_depth;
  116.  
  117. void yyerror ();
  118.  
  119. /* Like YYERROR but do call yyerror.  */
  120. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  121.  
  122. #define OP0(NODE) (TREE_OPERAND (NODE, 0))
  123. #define OP1(NODE) (TREE_OPERAND (NODE, 1))
  124.  
  125. /* Contains the statement keyword (if/while/do) to include in an
  126.    error message if the user supplies an empty conditional expression.  */
  127. static char *cond_stmt_keyword;
  128.  
  129. /* Nonzero if we have an `extern "C"' acting as an extern specifier.  */
  130. int have_extern_spec;
  131. int used_extern_spec;
  132.  
  133. void yyhook ();
  134.  
  135. /* Cons up an empty parameter list.  */
  136. #ifdef __GNUC__
  137. __inline
  138. #endif
  139. static tree
  140. empty_parms ()
  141. {
  142.   tree parms;
  143.  
  144.   if (strict_prototype)
  145.     parms = void_list_node;
  146.   else
  147.     parms = NULL_TREE;
  148.   return parms;
  149. }
  150.  
  151. #line 108 "parse.y"
  152. typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
  153. #line 277 "parse.y"
  154.  
  155. /* List of types and structure classes of the current declaration.  */
  156. static tree current_declspecs;
  157.  
  158. /* When defining an aggregate, this is the most recent one being defined.  */
  159. static tree current_aggr;
  160.  
  161. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  162.  
  163. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  164. extern void yyprint ();
  165. extern tree combine_strings        PROTO((tree));
  166.  
  167. #ifndef YYLTYPE
  168. typedef
  169.   struct yyltype
  170.     {
  171.       int timestamp;
  172.       int first_line;
  173.       int first_column;
  174.       int last_line;
  175.       int last_column;
  176.       char *text;
  177.    }
  178.   yyltype;
  179.  
  180. #define YYLTYPE yyltype
  181. #endif
  182.  
  183. #include <stdio.h>
  184.  
  185. #ifndef __cplusplus
  186. #ifndef __STDC__
  187. #define const
  188. #endif
  189. #endif
  190.  
  191.  
  192.  
  193. #define    YYFINAL        1356
  194. #define    YYFLAG        -32768
  195. #define    YYNTBASE    106
  196.  
  197. #define YYTRANSLATE(x) ((unsigned)(x) <= 336 ? yytranslate[x] : 338)
  198.  
  199. static const char yytranslate[] = {     0,
  200.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  201.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  202.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  203.      2,     2,   104,     2,     2,     2,    77,    65,     2,    88,
  204.    102,    75,    73,    55,    74,    87,    76,     2,     2,     2,
  205.      2,     2,     2,     2,     2,     2,     2,    60,    56,    69,
  206.     58,    70,    59,     2,     2,     2,     2,     2,     2,     2,
  207.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  208.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  209.     89,     2,   105,    64,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  212.      2,     2,    54,    63,   103,    83,     2,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  214.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  221.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  222.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  226.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  227.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  228.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  229.     36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  230.     46,    47,    48,    49,    50,    51,    52,    53,    57,    61,
  231.     62,    66,    67,    68,    71,    72,    78,    79,    80,    81,
  232.     82,    84,    85,    86,    90,    91,    92,    93,    94,    95,
  233.     96,    97,    98,    99,   100,   101
  234. };
  235.  
  236. #if YYDEBUG != 0
  237. static const short yyprhs[] = {     0,
  238.      0,     1,     3,     4,     7,    10,    11,    12,    14,    16,
  239.     17,    20,    22,    24,    26,    28,    34,    39,    43,    48,
  240.     53,    55,    56,    62,    64,    68,    70,    73,    75,    79,
  241.     81,    85,    87,    91,    92,    98,    99,   105,   106,   112,
  242.    113,   119,   123,   127,   134,   142,   147,   151,   155,   157,
  243.    159,   161,   163,   165,   168,   172,   176,   180,   184,   187,
  244.    190,   193,   196,   199,   201,   205,   210,   214,   220,   225,
  245.    229,   233,   236,   240,   244,   247,   249,   256,   261,   265,
  246.    269,   272,   275,   277,   281,   286,   289,   293,   294,   295,
  247.    297,   301,   304,   308,   310,   315,   318,   323,   326,   331,
  248.    334,   336,   338,   340,   342,   344,   346,   348,   350,   354,
  249.    358,   363,   368,   372,   377,   381,   386,   387,   389,   393,
  250.    395,   397,   398,   405,   406,   408,   409,   412,   414,   416,
  251.    418,   420,   422,   424,   426,   428,   432,   434,   438,   439,
  252.    441,   443,   444,   453,   455,   458,   463,   468,   470,   474,
  253.    478,   482,   486,   488,   490,   492,   493,   497,   500,   503,
  254.    506,   509,   512,   515,   520,   523,   528,   531,   535,   539,
  255.    544,   549,   555,   561,   568,   571,   576,   582,   586,   590,
  256.    594,   596,   600,   603,   607,   612,   614,   617,   623,   625,
  257.    630,   635,   640,   642,   646,   650,   654,   658,   662,   666,
  258.    670,   674,   678,   682,   686,   690,   694,   698,   702,   706,
  259.    710,   714,   718,   724,   728,   732,   734,   737,   741,   743,
  260.    745,   747,   749,   751,   753,   755,   758,   761,   765,   767,
  261.    769,   771,   775,   777,   779,   781,   783,   787,   791,   792,
  262.    797,   798,   805,   808,   813,   816,   819,   821,   826,   828,
  263.    836,   844,   852,   860,   865,   870,   873,   876,   878,   883,
  264.    886,   889,   892,   898,   902,   908,   912,   917,   924,   926,
  265.    929,   931,   934,   936,   938,   940,   943,   944,   947,   950,
  266.    954,   958,   962,   966,   970,   973,   976,   978,   980,   982,
  267.    985,   988,   991,   994,   996,   998,  1000,  1002,  1005,  1008,
  268.   1012,  1016,  1021,  1023,  1026,  1029,  1031,  1033,  1036,  1039,
  269.   1041,  1044,  1047,  1051,  1053,  1056,  1058,  1060,  1062,  1067,
  270.   1072,  1077,  1082,  1084,  1086,  1088,  1090,  1094,  1096,  1100,
  271.   1102,  1106,  1107,  1112,  1113,  1121,  1126,  1127,  1135,  1140,
  272.   1141,  1149,  1154,  1155,  1163,  1168,  1169,  1171,  1173,  1176,
  273.   1183,  1185,  1189,  1190,  1192,  1197,  1204,  1209,  1211,  1213,
  274.   1215,  1217,  1219,  1223,  1225,  1228,  1232,  1237,  1239,  1241,
  275.   1245,  1250,  1257,  1261,  1267,  1268,  1276,  1281,  1282,  1289,
  276.   1293,  1296,  1299,  1304,  1306,  1307,  1309,  1310,  1312,  1314,
  277.   1317,  1320,  1323,  1326,  1330,  1333,  1336,  1339,  1343,  1347,
  278.   1349,  1352,  1353,  1354,  1358,  1362,  1365,  1367,  1369,  1370,
  279.   1372,  1375,  1377,  1381,  1383,  1386,  1388,  1393,  1398,  1400,
  280.   1402,  1405,  1408,  1410,  1411,  1413,  1418,  1422,  1424,  1427,
  281.   1430,  1433,  1436,  1439,  1442,  1445,  1448,  1453,  1456,  1458,
  282.   1464,  1468,  1469,  1471,  1475,  1476,  1478,  1482,  1484,  1486,
  283.   1488,  1490,  1495,  1502,  1507,  1512,  1519,  1524,  1528,  1533,
  284.   1540,  1545,  1550,  1557,  1562,  1566,  1568,  1572,  1574,  1578,
  285.   1581,  1583,  1590,  1591,  1594,  1596,  1599,  1600,  1603,  1607,
  286.   1611,  1614,  1617,  1621,  1623,  1625,  1627,  1630,  1636,  1642,
  287.   1646,  1652,  1657,  1661,  1665,  1668,  1670,  1674,  1678,  1681,
  288.   1684,  1688,  1690,  1694,  1698,  1701,  1704,  1708,  1710,  1716,
  289.   1722,  1726,  1732,  1736,  1741,  1745,  1748,  1751,  1753,  1756,
  290.   1761,  1766,  1769,  1771,  1773,  1775,  1778,  1781,  1784,  1786,
  291.   1789,  1791,  1794,  1797,  1801,  1803,  1807,  1810,  1814,  1817,
  292.   1820,  1824,  1826,  1830,  1835,  1839,  1842,  1845,  1847,  1851,
  293.   1854,  1857,  1859,  1862,  1866,  1868,  1872,  1874,  1880,  1884,
  294.   1889,  1893,  1898,  1901,  1904,  1908,  1911,  1913,  1915,  1918,
  295.   1921,  1924,  1925,  1926,  1928,  1930,  1933,  1937,  1939,  1942,
  296.   1946,  1952,  1959,  1965,  1966,  1967,  1974,  1976,  1979,  1981,
  297.   1983,  1985,  1988,  1989,  1994,  1996,  1997,  1998,  2005,  2006,
  298.   2007,  2015,  2016,  2017,  2018,  2029,  2030,  2031,  2032,  2043,
  299.   2044,  2052,  2053,  2059,  2060,  2068,  2069,  2074,  2077,  2080,
  300.   2083,  2087,  2094,  2103,  2114,  2127,  2132,  2136,  2139,  2142,
  301.   2144,  2146,  2147,  2148,  2156,  2158,  2161,  2164,  2165,  2166,
  302.   2172,  2174,  2176,  2180,  2184,  2187,  2190,  2193,  2197,  2202,
  303.   2207,  2211,  2216,  2223,  2230,  2231,  2233,  2234,  2236,  2238,
  304.   2239,  2241,  2243,  2247,  2252,  2254,  2258,  2259,  2261,  2263,
  305.   2265,  2268,  2271,  2274,  2276,  2278,  2281,  2284,  2287,  2290,
  306.   2292,  2296,  2299,  2302,  2307,  2310,  2313,  2316,  2319,  2322,
  307.   2325,  2327,  2330,  2332,  2336,  2338,  2340,  2341,  2342,  2344,
  308.   2345,  2350,  2352,  2354,  2358,  2359,  2363,  2367,  2371,  2373,
  309.   2376,  2379,  2382,  2385,  2388,  2391,  2394,  2397,  2400,  2403,
  310.   2406,  2409,  2412,  2415,  2418,  2421,  2424,  2427,  2430,  2433,
  311.   2436,  2439,  2442,  2446,  2449,  2452,  2455,  2458,  2462,  2465,
  312.   2468,  2473,  2478,  2482
  313. };
  314.  
  315. static const short yyrhs[] = {    -1,
  316.    107,     0,     0,   108,   112,     0,   107,   112,     0,     0,
  317.      0,    25,     0,    26,     0,     0,   113,   114,     0,   130,
  318.      0,   129,     0,   123,     0,   121,     0,   111,    88,   180,
  319.    102,    56,     0,   115,    54,   107,   103,     0,   115,    54,
  320.    103,     0,   115,   109,   130,   110,     0,   115,   109,   129,
  321.    110,     0,    95,     0,     0,    45,    69,   117,   118,    70,
  322.      0,   120,     0,   118,    55,   120,     0,   221,     0,   221,
  323.    139,     0,   119,     0,   119,    58,   193,     0,   328,     0,
  324.     39,   122,    56,     0,     3,     0,   122,    55,     3,     0,
  325.      0,   116,   223,    54,   124,    56,     0,     0,   116,   224,
  326.     54,   125,    56,     0,     0,   116,   223,    60,   126,    56,
  327.      0,     0,   116,   224,    60,   127,    56,     0,   116,   223,
  328.     56,     0,   116,   224,    56,     0,   116,   259,   332,   198,
  329.    207,   128,     0,   116,   187,   184,   332,   198,   207,   128,
  330.      0,   116,   190,   259,   128,     0,   116,     1,   103,     0,
  331.    116,     1,    56,     0,    54,     0,    60,     0,    56,     0,
  332.     58,     0,    23,     0,   197,    56,     0,   190,   196,    56,
  333.      0,   190,   259,    56,     0,   187,   195,    56,     0,   187,
  334.    184,    56,     0,   190,    56,     0,   142,    56,     0,   187,
  335.     56,     0,     1,    56,     0,     1,   103,     0,    56,     0,
  336.    131,   135,   283,     0,   131,   134,   135,   283,     0,   131,
  337.    181,   283,     0,   131,   134,    56,   181,   283,     0,   131,
  338.    134,   181,   283,     0,   187,   184,     1,     0,   190,   259,
  339.      1,     0,   259,     1,     0,   187,   184,   332,     0,   190,
  340.    259,   332,     0,   259,   332,     0,    94,     0,   187,    88,
  341.    323,   102,   251,   332,     0,   187,    44,   251,   332,     0,
  342.    187,   184,   332,     0,   190,   259,   332,     0,   259,   332,
  343.      0,    23,     3,     0,   133,     0,   133,    58,   214,     0,
  344.    133,    88,   161,   102,     0,   133,    44,     0,    60,   136,
  345.    137,     0,     0,     0,   138,     0,   137,    55,   138,     0,
  346.    137,     1,     0,    88,   161,   102,     0,    44,     0,   140,
  347.     88,   161,   102,     0,   140,    44,     0,   269,    88,   161,
  348.    102,     0,   269,    44,     0,   263,    88,   161,   102,     0,
  349.    263,    44,     0,     3,     0,     4,     0,    53,     0,     3,
  350.      0,    53,     0,    99,     0,    98,     0,   100,     0,    45,
  351.    222,   150,     0,    45,   187,   184,     0,     5,    45,   222,
  352.    150,     0,     5,    45,   187,   184,     0,   144,   145,   150,
  353.      0,    53,    69,   146,    70,     0,    53,    69,    70,     0,
  354.      4,    69,   146,    70,     0,     0,   147,     0,   146,    55,
  355.    147,     0,   186,     0,   169,     0,     0,    97,   230,   149,
  356.    235,   236,   103,     0,     0,   148,     0,     0,   148,   151,
  357.      0,    74,     0,    73,     0,    81,     0,    82,     0,   104,
  358.      0,   160,     0,   169,     0,    44,     0,    88,   153,   102,
  359.      0,    44,     0,    88,   157,   102,     0,     0,   157,     0,
  360.      1,     0,     0,   312,   184,   332,   198,   207,    58,   158,
  361.    214,     0,   153,     0,    54,   103,     0,    54,   280,   277,
  362.    103,     0,    54,   280,     1,   103,     0,   290,     0,   169,
  363.     55,   169,     0,   169,    55,     1,     0,   160,    55,   169,
  364.      0,   160,    55,     1,     0,   169,     0,   160,     0,   174,
  365.      0,     0,    33,   163,   167,     0,    75,   167,     0,    65,
  366.    167,     0,    83,   167,     0,   152,   167,     0,    62,   139,
  367.      0,    11,   162,     0,    11,    88,   186,   102,     0,    28,
  368.    162,     0,    28,    88,   186,   102,     0,   177,   250,     0,
  369.    177,   250,   165,     0,   177,   164,   250,     0,   177,   164,
  370.    250,   165,     0,   177,    88,   186,   102,     0,   177,    88,
  371.    186,   102,   165,     0,   177,   164,    88,   186,   102,     0,
  372.    177,   164,    88,   186,   102,   165,     0,   178,   167,     0,
  373.    178,    89,   105,   167,     0,   178,    89,   153,   105,   167,
  374.      0,    88,   161,   102,     0,    54,   161,   103,     0,    88,
  375.    161,   102,     0,    44,     0,    88,   193,   102,     0,    58,
  376.    214,     0,    88,   186,   102,     0,   166,    88,   186,   102,
  377.      0,   168,     0,   166,   168,     0,   166,    54,   215,   219,
  378.    103,     0,   162,     0,    29,    88,   153,   102,     0,    30,
  379.     88,   153,   102,     0,    30,    88,     4,   102,     0,   167,
  380.      0,   169,    78,   169,     0,   169,    79,   169,     0,   169,
  381.     73,   169,     0,   169,    74,   169,     0,   169,    75,   169,
  382.      0,   169,    76,   169,     0,   169,    77,   169,     0,   169,
  383.     71,   169,     0,   169,    72,   169,     0,   169,    68,   169,
  384.      0,   169,    69,   169,     0,   169,    70,   169,     0,   169,
  385.     67,   169,     0,   169,    66,   169,     0,   169,    65,   169,
  386.      0,   169,    63,   169,     0,   169,    64,   169,     0,   169,
  387.     62,   169,     0,   169,    61,   169,     0,   169,    59,   318,
  388.     60,   169,     0,   169,    58,   169,     0,   169,    57,   169,
  389.      0,    92,     0,    92,   169,     0,    83,   330,   139,     0,
  390.    337,     0,     3,     0,    53,     0,   170,     0,     4,     0,
  391.    170,     0,   263,     0,    75,   172,     0,    65,   172,     0,
  392.     88,   172,   102,     0,   261,     0,   170,     0,   263,     0,
  393.     88,   172,   102,     0,   170,     0,     8,     0,   179,     0,
  394.    180,     0,    88,   153,   102,     0,    88,     1,   102,     0,
  395.      0,    88,   175,   284,   102,     0,     0,   174,    88,   161,
  396.    102,   176,   151,     0,   174,    44,     0,   174,    89,   153,
  397.    105,     0,   174,    81,     0,   174,    82,     0,    40,     0,
  398.      7,    88,   161,   102,     0,   265,     0,    47,    69,   186,
  399.     70,    88,   153,   102,     0,    48,    69,   186,    70,    88,
  400.    153,   102,     0,    49,    69,   186,    70,    88,   153,   102,
  401.      0,    50,    69,   186,    70,    88,   153,   102,     0,    46,
  402.     88,   153,   102,     0,    46,    88,   186,   102,     0,   272,
  403.      3,     0,   272,   337,     0,   264,     0,   264,    88,   161,
  404.    102,     0,   264,    44,     0,   182,   171,     0,   182,   262,
  405.      0,   182,   171,    88,   161,   102,     0,   182,   171,    44,
  406.      0,   182,   262,    88,   161,   102,     0,   182,   262,    44,
  407.      0,   182,    83,     6,    44,     0,   182,     6,    51,    83,
  408.      6,    44,     0,    38,     0,   272,    38,     0,    37,     0,
  409.    272,   178,     0,    42,     0,    43,     0,     9,     0,   180,
  410.      9,     0,     0,   174,    87,     0,   174,    86,     0,   193,
  411.    184,    56,     0,   187,   184,    56,     0,   193,   195,    56,
  412.      0,   187,   195,    56,     0,   190,   196,    56,     0,   187,
  413.     56,     0,   190,    56,     0,   255,     0,   259,     0,    44,
  414.      0,   185,    44,     0,   191,   275,     0,   252,   275,     0,
  415.    193,   275,     0,   191,     0,   252,     0,   191,     0,   188,
  416.      0,   190,   193,     0,   193,   189,     0,   190,   193,   189,
  417.      0,   190,   193,   192,     0,   190,   193,   192,   189,     0,
  418.      5,     0,   189,   194,     0,   189,     5,     0,   252,     0,
  419.      5,     0,   190,     7,     0,   190,     5,     0,   193,     0,
  420.    252,   193,     0,   193,   192,     0,   252,   193,   192,     0,
  421.    194,     0,   192,   194,     0,   216,     0,     6,     0,   269,
  422.      0,    27,    88,   153,   102,     0,    27,    88,   186,   102,
  423.      0,    31,    88,   153,   102,     0,    31,    88,   186,   102,
  424.      0,     6,     0,     7,     0,   216,     0,   199,     0,   195,
  425.     55,   201,     0,   203,     0,   196,    55,   201,     0,   205,
  426.      0,   197,    55,   201,     0,     0,   111,    88,   180,   102,
  427.      0,     0,   184,   332,   198,   207,    58,   200,   214,     0,
  428.    184,   332,   198,   207,     0,     0,   184,   332,   198,   207,
  429.     58,   202,   214,     0,   184,   332,   198,   207,     0,     0,
  430.    259,   332,   198,   207,    58,   204,   214,     0,   259,   332,
  431.    198,   207,     0,     0,   259,   332,   198,   207,    58,   206,
  432.    214,     0,   259,   332,   198,   207,     0,     0,   208,     0,
  433.    209,     0,   208,   209,     0,    32,    88,    88,   210,   102,
  434.    102,     0,   211,     0,   210,    55,   211,     0,     0,   212,
  435.      0,   212,    88,     3,   102,     0,   212,    88,     3,    55,
  436.    161,   102,     0,   212,    88,   161,   102,     0,   139,     0,
  437.      5,     0,     6,     0,     7,     0,   139,     0,   213,    55,
  438.    139,     0,   169,     0,    54,   103,     0,    54,   215,   103,
  439.      0,    54,   215,    55,   103,     0,     1,     0,   214,     0,
  440.    215,    55,   214,     0,    89,   169,   105,   214,     0,   215,
  441.     55,    19,   169,    60,   214,     0,   139,    60,   214,     0,
  442.    215,    55,   139,    60,   214,     0,     0,    12,   139,    54,
  443.    217,   248,   220,   103,     0,    12,   139,    54,   103,     0,
  444.      0,    12,    54,   218,   248,   220,   103,     0,    12,    54,
  445.    103,     0,    12,   139,     0,    12,   270,     0,   229,   235,
  446.    236,   103,     0,   229,     0,     0,    55,     0,     0,    55,
  447.      0,    35,     0,   221,     5,     0,   221,     6,     0,   221,
  448.      7,     0,   221,    35,     0,   221,   144,    56,     0,   221,
  449.    139,     0,   221,   270,     0,   221,   143,     0,   221,   144,
  450.     54,     0,   221,   144,    60,     0,   222,     0,   221,   141,
  451.      0,     0,     0,   223,   225,   230,     0,   224,   226,   230,
  452.      0,   221,    54,     0,   228,     0,   227,     0,     0,    60,
  453.      0,    60,   231,     0,   232,     0,   231,    55,   232,     0,
  454.    233,     0,   234,   233,     0,   269,     0,    31,    88,   153,
  455.    102,     0,    31,    88,   186,   102,     0,    36,     0,     5,
  456.      0,   234,    36,     0,   234,     5,     0,    54,     0,     0,
  457.    237,     0,   236,    36,    60,   237,     0,   236,    36,    60,
  458.      0,   238,     0,   237,   238,     0,   237,    56,     0,   239,
  459.     56,     0,   239,   103,     0,   132,    60,     0,   132,    54,
  460.      0,   187,   240,     0,   190,   241,     0,   259,   332,   198,
  461.    207,     0,    60,   169,     0,     1,     0,   187,    88,   323,
  462.    102,   251,     0,   187,    44,   251,     0,     0,   242,     0,
  463.    240,    55,   243,     0,     0,   245,     0,   241,    55,   247,
  464.      0,   244,     0,   245,     0,   246,     0,   247,     0,   255,
  465.    332,   198,   207,     0,   255,   332,   198,   207,    58,   214,
  466.      0,     4,    60,   169,   207,     0,   259,   332,   198,   207,
  467.      0,   259,   332,   198,   207,    58,   214,     0,     3,    60,
  468.    169,   207,     0,    60,   169,   207,     0,   255,   332,   198,
  469.    207,     0,   255,   332,   198,   207,    58,   214,     0,     4,
  470.     60,   169,   207,     0,   259,   332,   198,   207,     0,   259,
  471.    332,   198,   207,    58,   214,     0,     3,    60,   169,   207,
  472.      0,    60,   169,   207,     0,   249,     0,   248,    55,   249,
  473.      0,   139,     0,   139,    58,   169,     0,   312,   273,     0,
  474.    312,     0,    88,   186,   102,    89,   153,   105,     0,     0,
  475.    251,     7,     0,     7,     0,   252,     7,     0,     0,   254,
  476.    153,     0,    75,   252,   255,     0,    65,   252,   255,     0,
  477.     75,   255,     0,    65,   255,     0,   271,   251,   255,     0,
  478.    258,     0,   266,     0,   257,     0,   267,   266,     0,   258,
  479.     88,   161,   102,   251,     0,   258,    88,   323,   102,   251,
  480.      0,   258,    44,   251,     0,   258,    88,     1,   102,   251,
  481.      0,   258,    89,   253,   105,     0,   258,    89,   105,     0,
  482.     88,   255,   102,     0,   267,   266,     0,   266,     0,    75,
  483.    252,   259,     0,    65,   252,   259,     0,    75,   259,     0,
  484.     65,   259,     0,   271,   251,   259,     0,   173,     0,    75,
  485.    252,   259,     0,    65,   252,   259,     0,    75,   260,     0,
  486.     65,   260,     0,   271,   251,   259,     0,   261,     0,   173,
  487.     88,   161,   102,   251,     0,   173,    88,   323,   102,   251,
  488.      0,   173,    44,   251,     0,   173,    88,     1,   102,   251,
  489.      0,    88,   260,   102,     0,   173,    89,   253,   105,     0,
  490.    173,    89,   105,     0,   267,   171,     0,   267,   170,     0,
  491.    263,     0,   272,   263,     0,   193,    88,   161,   102,     0,
  492.    193,    88,   172,   102,     0,   193,   185,     0,     4,     0,
  493.    143,     0,   268,     0,   267,   268,     0,     4,    51,     0,
  494.    143,    51,     0,   256,     0,   272,   256,     0,   257,     0,
  495.    272,   256,     0,   267,    75,     0,   272,   267,    75,     0,
  496.     51,     0,    75,   251,   273,     0,    75,   251,     0,    65,
  497.    251,   273,     0,    65,   251,     0,   271,   251,     0,   271,
  498.    251,   273,     0,   274,     0,    89,   153,   105,     0,   274,
  499.     89,   253,   105,     0,    75,   252,   275,     0,    75,   275,
  500.      0,    75,   252,     0,    75,     0,    65,   252,   275,     0,
  501.     65,   275,     0,    65,   252,     0,    65,     0,   271,   251,
  502.      0,   271,   251,   275,     0,   276,     0,    88,   275,   102,
  503.      0,    85,     0,   276,    88,   323,   102,   251,     0,   276,
  504.     44,   251,     0,   276,    89,   253,   105,     0,   276,    89,
  505.    105,     0,    88,   324,   102,   251,     0,   166,   251,     0,
  506.    185,   251,     0,    89,   253,   105,     0,    89,   105,     0,
  507.    289,     0,   278,     0,   277,   289,     0,   277,   278,     0,
  508.      1,    56,     0,     0,     0,   281,     0,   282,     0,   281,
  509.    282,     0,    34,   213,    56,     0,   284,     0,     1,   284,
  510.      0,    54,   279,   103,     0,    54,   279,   280,   277,   103,
  511.      0,    54,   279,   280,   277,     1,   103,     0,    54,   279,
  512.    280,     1,   103,     0,     0,     0,    13,   286,   279,   155,
  513.    287,   288,     0,   284,     0,   279,   290,     0,   284,     0,
  514.    290,     0,   183,     0,   153,    56,     0,     0,   285,    14,
  515.    291,   288,     0,   285,     0,     0,     0,    15,   292,   279,
  516.    155,   293,   159,     0,     0,     0,    16,   294,   288,    15,
  517.    295,   154,    56,     0,     0,     0,     0,   315,   296,   279,
  518.    156,    56,   297,   318,   102,   298,   159,     0,     0,     0,
  519.      0,   316,   299,   279,   156,    56,   300,   318,   102,   301,
  520.    159,     0,     0,    18,   279,    88,   157,   102,   302,   288,
  521.      0,     0,    19,   169,    60,   303,   289,     0,     0,    19,
  522.    169,    10,   169,    60,   304,   289,     0,     0,    20,    60,
  523.    305,   289,     0,    21,    56,     0,    22,    56,     0,    23,
  524.     56,     0,    23,   153,    56,     0,   111,   317,    88,   180,
  525.    102,    56,     0,   111,   317,    88,   180,    60,   319,   102,
  526.     56,     0,   111,   317,    88,   180,    60,   319,    60,   319,
  527.    102,    56,     0,   111,   317,    88,   180,    60,   319,    60,
  528.    319,    60,   322,   102,    56,     0,    24,    75,   153,    56,
  529.      0,    24,   139,    56,     0,   314,   289,     0,   314,   103,
  530.      0,    56,     0,   306,     0,     0,     0,    90,    54,   279,
  531.    307,   309,   308,   310,     0,   103,     0,   277,   103,     0,
  532.      1,   103,     0,     0,     0,   310,    91,   311,   313,   284,
  533.      0,   191,     0,   252,     0,    88,    10,   102,     0,    88,
  534.    329,   102,     0,     3,    60,     0,    53,    60,     0,     4,
  535.     60,     0,    17,    88,    56,     0,    17,    88,   153,    56,
  536.      0,    17,    88,    54,   103,     0,    17,    88,   183,     0,
  537.     17,    88,     1,    56,     0,    17,    88,    54,   279,   277,
  538.    103,     0,    17,    88,    54,   279,     1,   103,     0,     0,
  539.      7,     0,     0,   153,     0,     1,     0,     0,   320,     0,
  540.    321,     0,   320,    55,   321,     0,     9,    88,   153,   102,
  541.      0,     9,     0,   322,    55,     9,     0,     0,   324,     0,
  542.    186,     0,   325,     0,   326,    10,     0,   325,    10,     0,
  543.    186,    10,     0,    10,     0,    93,     0,   325,    93,     0,
  544.    186,    93,     0,   325,    60,     0,   186,    60,     0,   327,
  545.      0,   329,    58,   214,     0,   326,   328,     0,   326,   331,
  546.      0,   326,   331,    58,   214,     0,   325,    55,     0,   186,
  547.     55,     0,   188,   184,     0,   191,   184,     0,   193,   184,
  548.      0,   188,   275,     0,   188,     0,   190,   259,     0,   329,
  549.      0,   329,    58,   214,     0,   327,     0,   186,     0,     0,
  550.      0,   259,     0,     0,    92,    88,   334,   102,     0,   186,
  551.      0,   333,     0,   334,    55,   333,     0,     0,    75,   251,
  552.    335,     0,    65,   251,   335,     0,   271,   251,   335,     0,
  553.     41,     0,   336,    75,     0,   336,    76,     0,   336,    77,
  554.      0,   336,    73,     0,   336,    74,     0,   336,    65,     0,
  555.    336,    63,     0,   336,    64,     0,   336,    83,     0,   336,
  556.     55,     0,   336,    68,     0,   336,    69,     0,   336,    70,
  557.      0,   336,    67,     0,   336,    57,     0,   336,    58,     0,
  558.    336,    71,     0,   336,    72,     0,   336,    81,     0,   336,
  559.     82,     0,   336,    62,     0,   336,    61,     0,   336,   104,
  560.      0,   336,    59,    60,     0,   336,    66,     0,   336,    86,
  561.      0,   336,    78,     0,   336,    44,     0,   336,    89,   105,
  562.      0,   336,    38,     0,   336,    37,     0,   336,    38,    89,
  563.    105,     0,   336,    37,    89,   105,     0,   336,   312,   335,
  564.      0,   336,     1,     0
  565. };
  566.  
  567. #endif
  568.  
  569. #if YYDEBUG != 0
  570. static const short yyrline[] = { 0,
  571.    292,   293,   307,   309,   310,   314,   319,   323,   325,   328,
  572.    331,   335,   338,   340,   342,   343,   346,   348,   350,   353,
  573.    358,   363,   366,   370,   373,   377,   387,   391,   401,   403,
  574.    406,   411,   413,   417,   423,   423,   426,   426,   429,   429,
  575.    444,   444,   449,   454,   471,   494,   504,   505,   508,   509,
  576.    510,   511,   512,   515,   518,   521,   526,   531,   537,   539,
  577.    540,   559,   560,   561,   564,   578,   591,   594,   597,   600,
  578.    602,   604,   608,   614,   619,   624,   631,   642,   649,   651,
  579.    653,   657,   665,   667,   669,   671,   675,   688,   711,   714,
  580.    716,   717,   720,   726,   732,   734,   736,   738,   741,   745,
  581.    751,   753,   754,   757,   759,   762,   764,   765,   768,   771,
  582.    773,   775,   779,   784,   787,   789,   793,   798,   801,   805,
  583.    808,   811,   845,   861,   864,   868,   871,   875,   877,   879,
  584.    881,   883,   887,   889,   892,   897,   902,   907,   912,   915,
  585.    918,   922,   941,   948,   951,   954,   956,   958,   962,   966,
  586.    969,   971,   975,   978,   981,   990,   993,   996,   998,  1000,
  587.   1002,  1009,  1020,  1040,  1042,  1044,  1049,  1051,  1053,  1055,
  588.   1057,  1060,  1062,  1064,  1067,  1069,  1073,  1079,  1082,  1089,
  589.   1092,  1094,  1102,  1111,  1117,  1123,  1125,  1127,  1140,  1142,
  590.   1144,  1146,  1163,  1166,  1168,  1170,  1172,  1174,  1176,  1178,
  591.   1180,  1182,  1184,  1186,  1188,  1190,  1192,  1194,  1196,  1198,
  592.   1200,  1202,  1204,  1206,  1208,  1215,  1217,  1234,  1237,  1238,
  593.   1239,  1242,  1244,  1247,  1249,  1250,  1252,  1254,  1258,  1260,
  594.   1261,  1264,  1268,  1288,  1289,  1290,  1292,  1294,  1296,  1304,
  595.   1325,  1330,  1337,  1344,  1346,  1355,  1360,  1383,  1427,  1428,
  596.   1431,  1434,  1437,  1440,  1442,  1445,  1484,  1491,  1493,  1495,
  597.   1497,  1499,  1501,  1516,  1531,  1542,  1554,  1561,  1610,  1612,
  598.   1616,  1618,  1622,  1625,  1630,  1632,  1636,  1649,  1650,  1656,
  599.   1667,  1675,  1681,  1686,  1688,  1693,  1700,  1702,  1706,  1710,
  600.   1716,  1719,  1721,  1723,  1725,  1733,  1735,  1737,  1740,  1742,
  601.   1744,  1746,  1751,  1757,  1759,  1770,  1773,  1775,  1778,  1793,
  602.   1796,  1798,  1800,  1804,  1807,  1815,  1816,  1817,  1818,  1822,
  603.   1826,  1840,  1858,  1859,  1860,  1863,  1865,  1868,  1870,  1873,
  604.   1875,  1878,  1881,  1885,  1902,  1904,  1922,  1928,  1929,  1935,
  605.   1943,  1945,  1954,  1962,  1964,  1975,  1978,  1982,  1985,  1989,
  606.   1994,  1997,  2001,  2004,  2006,  2008,  2010,  2017,  2019,  2020,
  607.   2021,  2025,  2028,  2032,  2034,  2037,  2040,  2043,  2049,  2052,
  608.   2055,  2057,  2059,  2061,  2065,  2069,  2073,  2076,  2079,  2083,
  609.   2086,  2088,  2092,  2143,  2158,  2160,  2163,  2165,  2169,  2170,
  610.   2172,  2174,  2176,  2180,  2189,  2192,  2194,  2196,  2202,  2204,
  611.   2207,  2212,  2215,  2218,  2227,  2238,  2243,  2243,  2245,  2248,
  612.   2250,  2254,  2256,  2260,  2288,  2319,  2321,  2343,  2367,  2369,
  613.   2373,  2399,  2408,  2470,  2473,  2480,  2491,  2500,  2504,  2517,
  614.   2520,  2522,  2527,  2529,  2533,  2541,  2545,  2548,  2550,  2561,
  615.   2566,  2574,  2577,  2578,  2589,  2592,  2593,  2604,  2606,  2609,
  616.   2611,  2614,  2619,  2623,  2629,  2634,  2638,  2642,  2648,  2652,
  617.   2655,  2660,  2664,  2667,  2670,  2679,  2681,  2685,  2688,  2693,
  618.   2696,  2700,  2709,  2712,  2716,  2719,  2727,  2729,  2734,  2737,
  619.   2739,  2741,  2743,  2747,  2750,  2764,  2767,  2772,  2775,  2777,
  620.   2779,  2781,  2783,  2785,  2787,  2791,  2797,  2800,  2802,  2804,
  621.   2806,  2810,  2813,  2816,  2818,  2820,  2822,  2826,  2829,  2832,
  622.   2834,  2836,  2838,  2840,  2842,  2846,  2852,  2858,  2860,  2864,
  623.   2867,  2869,  2873,  2875,  2878,  2880,  2886,  2889,  2903,  2905,
  624.   2909,  2911,  2915,  2918,  2924,  2930,  2933,  2935,  2937,  2939,
  625.   2943,  2947,  2951,  2954,  2959,  2962,  2964,  2966,  2968,  2970,
  626.   2972,  2974,  2976,  2980,  2984,  2988,  2992,  2993,  2995,  2997,
  627.   2999,  3001,  3003,  3005,  3007,  3009,  3017,  3019,  3020,  3021,
  628.   3024,  3031,  3041,  3043,  3048,  3050,  3053,  3067,  3070,  3073,
  629.   3077,  3081,  3085,  3091,  3094,  3098,  3100,  3103,  3109,  3112,
  630.   3115,  3118,  3131,  3134,  3139,  3145,  3150,  3153,  3158,  3162,
  631.   3165,  3171,  3176,  3179,  3184,  3193,  3197,  3200,  3206,  3216,
  632.   3223,  3229,  3254,  3254,  3286,  3286,  3302,  3302,  3306,  3310,
  633.   3313,  3318,  3325,  3334,  3343,  3352,  3355,  3361,  3363,  3367,
  634.   3369,  3372,  3376,  3379,  3382,  3390,  3394,  3400,  3402,  3404,
  635.   3408,  3410,  3413,  3426,  3431,  3439,  3441,  3445,  3448,  3450,
  636.   3454,  3457,  3459,  3461,  3467,  3471,  3475,  3478,  3479,  3485,
  637.   3487,  3490,  3492,  3496,  3501,  3504,  3514,  3521,  3522,  3529,
  638.   3535,  3540,  3544,  3549,  3556,  3560,  3564,  3569,  3580,  3594,
  639.   3597,  3599,  3601,  3603,  3607,  3609,  3617,  3634,  3636,  3638,
  640.   3640,  3642,  3646,  3649,  3653,  3655,  3658,  3680,  3686,  3693,
  641.   3696,  3700,  3705,  3707,  3714,  3717,  3719,  3721,  3727,  3731,
  642.   3734,  3736,  3738,  3740,  3742,  3744,  3746,  3748,  3750,  3752,
  643.   3754,  3756,  3758,  3760,  3762,  3764,  3766,  3768,  3770,  3772,
  644.   3774,  3776,  3778,  3780,  3782,  3784,  3786,  3788,  3790,  3792,
  645.   3794,  3796,  3799,  3801
  646. };
  647.  
  648. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  649. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  650. "ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
  651. "RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
  652. "CLASSOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE",
  653. "NEW","OVERLOAD","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","LEFT_RIGHT","TEMPLATE",
  654. "TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST","CONST_CAST","SCOPE",
  655. "EMPTY","PTYPENAME","'{'","','","';'","ASSIGN","'='","'?'","':'","OROR","ANDAND",
  656. "'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT",
  657. "RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS",
  658. "MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['",
  659. "TRY","CATCH","THROW","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL","EXTERN_LANG_STRING",
  660. "ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN",
  661. "END_OF_SAVED_INPUT","')'","'}'","'!'","']'","program","extdefs","@1",".hush_warning",
  662. ".warning_ok","asm_keyword","lang_extdef","@2","extdef","extern_lang_string",
  663. "template_header","@3","template_parm_list","template_type_parm","template_parm",
  664. "overloaddef","ov_identifiers","template_def","@4","@5","@6","@7","fn_tmpl_end",
  665. "datadef","fndef","fn.def1","fn.def2","return_id","return_init","base_init",
  666. ".set_base_init","member_init_list","member_init","identifier","notype_identifier",
  667. "identifier_defn","explicit_instantiation","template_type","template_type_name",
  668. "tmpl.2","template_arg_list","template_arg","template_instantiate_once","@8",
  669. "template_instantiation","template_instantiate_some","unop","expr","paren_expr_or_null",
  670. "paren_cond_or_null","xcond","condition","@9","already_scoped_stmt","nontrivial_exprlist",
  671. "nonnull_exprlist","unary_expr","@10","new_placement","new_initializer","regcast_or_absdcl",
  672. "cast_expr","sub_cast_expr","expr_no_commas","notype_unqualified_id","unqualified_id",
  673. "expr_or_declarator","direct_notype_declarator","primary","@11","@12","new",
  674. "delete","boolean.literal","string","nodecls","object","decl","declarator","fcast_or_absdcl",
  675. "type_id","typed_declspecs","typed_declspecs1","reserved_declspecs","declmods",
  676. "typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  677. "initdecls","notype_initdecls","nomods_initdecls","maybeasm","initdcl0","@13",
  678. "initdcl","@14","notype_initdcl0","@15","nomods_initdcl0","@16","maybe_attribute",
  679. "attributes","attribute","attribute_list","attrib","any_word","identifiers_or_typenames",
  680. "init","initlist","structsp","@17","@18","maybecomma","maybecomma_warn","aggr",
  681. "specialization","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
  682. "do_xref","do_xref_defn","named_class_head","unnamed_class_head","class_head",
  683. "maybe_base_class_list","base_class_list","base_class","base_class.1","base_class_access_list",
  684. "left_curly","opt.component_decl_list","component_decl_list","component_decl",
  685. "component_decl_1","components","notype_components","component_declarator0",
  686. "component_declarator","after_type_component_declarator0","notype_component_declarator0",
  687. "after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
  688. "new_type_id","type_quals","nonempty_type_quals","nonmomentary_expr","@19","after_type_declarator",
  689. "qualified_type_name","nested_type","direct_after_type_declarator","notype_declarator",
  690. "complex_notype_declarator","complex_direct_notype_declarator","qualified_id",
  691. "notype_qualified_id","overqualified_id","functional_cast","type_name","nested_name_specifier",
  692. "nested_name_specifier_1","complete_type_name","complex_type_name","ptr_to_mem",
  693. "global_scope","new_declarator","direct_new_declarator","absdcl","direct_abstract_declarator",
  694. "stmts","errstmt",".pushlevel","maybe_label_decls","label_decls","label_decl",
  695. "compstmt_or_error","compstmt","simple_if","@20","@21","implicitly_scoped_stmt",
  696. "stmt","simple_stmt","@22","@23","@24","@25","@26","@27","@28","@29","@30","@31",
  697. "@32","@33","@34","@35","@36","try_block","@37","@38","ansi_try_stmts","handler_seq",
  698. "@39","type_specifier_seq","handler_args","label_colon","forhead.1","forhead.2",
  699. "maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands","asm_operand",
  700. "asm_clobbers","parmlist","complex_parmlist","parms","parms_comma","named_parm",
  701. "full_parm","parm","see_typename","bad_parm","maybe_raises","ansi_raise_identifier",
  702. "ansi_raise_identifiers","conversion_declarator","operator","operator_name",
  703. ""
  704. };
  705. #endif
  706.  
  707. static const short yyr1[] = {     0,
  708.    106,   106,   108,   107,   107,   109,   110,   111,   111,   113,
  709.    112,   114,   114,   114,   114,   114,   114,   114,   114,   114,
  710.    115,   117,   116,   118,   118,   119,   119,   120,   120,   120,
  711.    121,   122,   122,   124,   123,   125,   123,   126,   123,   127,
  712.    123,   123,   123,   123,   123,   123,   123,   123,   128,   128,
  713.    128,   128,   128,   129,   129,   129,   129,   129,   129,   129,
  714.    129,   129,   129,   129,   130,   130,   130,   130,   130,   130,
  715.    130,   130,   131,   131,   131,   131,   132,   132,   132,   132,
  716.    132,   133,   134,   134,   134,   134,   135,   136,   137,   137,
  717.    137,   137,   138,   138,   138,   138,   138,   138,   138,   138,
  718.    139,   139,   139,   140,   140,   141,   141,   141,   142,   142,
  719.    142,   142,   143,   144,   144,   144,   145,   146,   146,   147,
  720.    147,   149,   148,   150,   150,   151,   151,   152,   152,   152,
  721.    152,   152,   153,   153,   154,   154,   155,   155,   156,   156,
  722.    156,   158,   157,   157,   159,   159,   159,   159,   160,   160,
  723.    160,   160,   161,   161,   162,   163,   162,   162,   162,   162,
  724.    162,   162,   162,   162,   162,   162,   162,   162,   162,   162,
  725.    162,   162,   162,   162,   162,   162,   162,   164,   164,   165,
  726.    165,   165,   165,   166,   166,   167,   167,   167,   168,   168,
  727.    168,   168,   169,   169,   169,   169,   169,   169,   169,   169,
  728.    169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  729.    169,   169,   169,   169,   169,   169,   169,   170,   170,   170,
  730.    170,   171,   171,   172,   172,   172,   172,   172,   173,   173,
  731.    173,   173,   174,   174,   174,   174,   174,   174,   175,   174,
  732.    176,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  733.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  734.    174,   174,   174,   174,   174,   174,   174,   174,   177,   177,
  735.    178,   178,   179,   179,   180,   180,   181,   182,   182,   183,
  736.    183,   183,   183,   183,   183,   183,   184,   184,   185,   185,
  737.    186,   186,   186,   186,   186,   187,   187,   188,   188,   188,
  738.    188,   188,   189,   189,   189,   190,   190,   190,   190,   191,
  739.    191,   191,   191,   192,   192,   193,   193,   193,   193,   193,
  740.    193,   193,   194,   194,   194,   195,   195,   196,   196,   197,
  741.    197,   198,   198,   200,   199,   199,   202,   201,   201,   204,
  742.    203,   203,   206,   205,   205,   207,   207,   208,   208,   209,
  743.    210,   210,   211,   211,   211,   211,   211,   212,   212,   212,
  744.    212,   213,   213,   214,   214,   214,   214,   214,   215,   215,
  745.    215,   215,   215,   215,   217,   216,   216,   218,   216,   216,
  746.    216,   216,   216,   216,   219,   219,   220,   220,   221,   221,
  747.    221,   221,   221,   222,   223,   223,   223,   223,   223,   223,
  748.    224,   225,   226,   227,   227,   228,   229,   229,   230,   230,
  749.    230,   231,   231,   232,   232,   233,   233,   233,   234,   234,
  750.    234,   234,   235,   236,   236,   236,   236,   237,   237,   237,
  751.    238,   238,   238,   238,   239,   239,   239,   239,   239,   239,
  752.    239,   240,   240,   240,   241,   241,   241,   242,   242,   243,
  753.    243,   244,   244,   244,   245,   245,   245,   245,   246,   246,
  754.    246,   247,   247,   247,   247,   248,   248,   249,   249,   250,
  755.    250,   250,   251,   251,   252,   252,   254,   253,   255,   255,
  756.    255,   255,   255,   255,   256,   256,   257,   258,   258,   258,
  757.    258,   258,   258,   258,   258,   258,   259,   259,   259,   259,
  758.    259,   259,   260,   260,   260,   260,   260,   260,   261,   261,
  759.    261,   261,   261,   261,   261,   262,   263,   264,   264,   265,
  760.    265,   265,   266,   266,   267,   267,   268,   268,   269,   269,
  761.    270,   270,   271,   271,   272,   273,   273,   273,   273,   273,
  762.    273,   273,   274,   274,   275,   275,   275,   275,   275,   275,
  763.    275,   275,   275,   275,   275,   276,   276,   276,   276,   276,
  764.    276,   276,   276,   276,   276,   276,   277,   277,   277,   277,
  765.    278,   279,   280,   280,   281,   281,   282,   283,   283,   284,
  766.    284,   284,   284,   286,   287,   285,   288,   288,   289,   289,
  767.    290,   290,   291,   290,   290,   292,   293,   290,   294,   295,
  768.    290,   296,   297,   298,   290,   299,   300,   301,   290,   302,
  769.    290,   303,   290,   304,   290,   305,   290,   290,   290,   290,
  770.    290,   290,   290,   290,   290,   290,   290,   290,   290,   290,
  771.    290,   307,   308,   306,   309,   309,   309,   310,   311,   310,
  772.    312,   312,   313,   313,   314,   314,   314,   315,   315,   315,
  773.    316,   316,   316,   316,   317,   317,   318,   318,   318,   319,
  774.    319,   320,   320,   321,   322,   322,   323,   323,   323,   324,
  775.    324,   324,   324,   324,   324,   324,   324,   324,   324,   325,
  776.    325,   325,   325,   325,   326,   326,   327,   327,   327,   327,
  777.    327,   327,   328,   328,   329,   329,   330,   331,   331,   332,
  778.    332,   333,   334,   334,   335,   335,   335,   335,   336,   337,
  779.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  780.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  781.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  782.    337,   337,   337,   337
  783. };
  784.  
  785. static const short yyr2[] = {     0,
  786.      0,     1,     0,     2,     2,     0,     0,     1,     1,     0,
  787.      2,     1,     1,     1,     1,     5,     4,     3,     4,     4,
  788.      1,     0,     5,     1,     3,     1,     2,     1,     3,     1,
  789.      3,     1,     3,     0,     5,     0,     5,     0,     5,     0,
  790.      5,     3,     3,     6,     7,     4,     3,     3,     1,     1,
  791.      1,     1,     1,     2,     3,     3,     3,     3,     2,     2,
  792.      2,     2,     2,     1,     3,     4,     3,     5,     4,     3,
  793.      3,     2,     3,     3,     2,     1,     6,     4,     3,     3,
  794.      2,     2,     1,     3,     4,     2,     3,     0,     0,     1,
  795.      3,     2,     3,     1,     4,     2,     4,     2,     4,     2,
  796.      1,     1,     1,     1,     1,     1,     1,     1,     3,     3,
  797.      4,     4,     3,     4,     3,     4,     0,     1,     3,     1,
  798.      1,     0,     6,     0,     1,     0,     2,     1,     1,     1,
  799.      1,     1,     1,     1,     1,     3,     1,     3,     0,     1,
  800.      1,     0,     8,     1,     2,     4,     4,     1,     3,     3,
  801.      3,     3,     1,     1,     1,     0,     3,     2,     2,     2,
  802.      2,     2,     2,     4,     2,     4,     2,     3,     3,     4,
  803.      4,     5,     5,     6,     2,     4,     5,     3,     3,     3,
  804.      1,     3,     2,     3,     4,     1,     2,     5,     1,     4,
  805.      4,     4,     1,     3,     3,     3,     3,     3,     3,     3,
  806.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  807.      3,     3,     5,     3,     3,     1,     2,     3,     1,     1,
  808.      1,     1,     1,     1,     1,     2,     2,     3,     1,     1,
  809.      1,     3,     1,     1,     1,     1,     3,     3,     0,     4,
  810.      0,     6,     2,     4,     2,     2,     1,     4,     1,     7,
  811.      7,     7,     7,     4,     4,     2,     2,     1,     4,     2,
  812.      2,     2,     5,     3,     5,     3,     4,     6,     1,     2,
  813.      1,     2,     1,     1,     1,     2,     0,     2,     2,     3,
  814.      3,     3,     3,     3,     2,     2,     1,     1,     1,     2,
  815.      2,     2,     2,     1,     1,     1,     1,     2,     2,     3,
  816.      3,     4,     1,     2,     2,     1,     1,     2,     2,     1,
  817.      2,     2,     3,     1,     2,     1,     1,     1,     4,     4,
  818.      4,     4,     1,     1,     1,     1,     3,     1,     3,     1,
  819.      3,     0,     4,     0,     7,     4,     0,     7,     4,     0,
  820.      7,     4,     0,     7,     4,     0,     1,     1,     2,     6,
  821.      1,     3,     0,     1,     4,     6,     4,     1,     1,     1,
  822.      1,     1,     3,     1,     2,     3,     4,     1,     1,     3,
  823.      4,     6,     3,     5,     0,     7,     4,     0,     6,     3,
  824.      2,     2,     4,     1,     0,     1,     0,     1,     1,     2,
  825.      2,     2,     2,     3,     2,     2,     2,     3,     3,     1,
  826.      2,     0,     0,     3,     3,     2,     1,     1,     0,     1,
  827.      2,     1,     3,     1,     2,     1,     4,     4,     1,     1,
  828.      2,     2,     1,     0,     1,     4,     3,     1,     2,     2,
  829.      2,     2,     2,     2,     2,     2,     4,     2,     1,     5,
  830.      3,     0,     1,     3,     0,     1,     3,     1,     1,     1,
  831.      1,     4,     6,     4,     4,     6,     4,     3,     4,     6,
  832.      4,     4,     6,     4,     3,     1,     3,     1,     3,     2,
  833.      1,     6,     0,     2,     1,     2,     0,     2,     3,     3,
  834.      2,     2,     3,     1,     1,     1,     2,     5,     5,     3,
  835.      5,     4,     3,     3,     2,     1,     3,     3,     2,     2,
  836.      3,     1,     3,     3,     2,     2,     3,     1,     5,     5,
  837.      3,     5,     3,     4,     3,     2,     2,     1,     2,     4,
  838.      4,     2,     1,     1,     1,     2,     2,     2,     1,     2,
  839.      1,     2,     2,     3,     1,     3,     2,     3,     2,     2,
  840.      3,     1,     3,     4,     3,     2,     2,     1,     3,     2,
  841.      2,     1,     2,     3,     1,     3,     1,     5,     3,     4,
  842.      3,     4,     2,     2,     3,     2,     1,     1,     2,     2,
  843.      2,     0,     0,     1,     1,     2,     3,     1,     2,     3,
  844.      5,     6,     5,     0,     0,     6,     1,     2,     1,     1,
  845.      1,     2,     0,     4,     1,     0,     0,     6,     0,     0,
  846.      7,     0,     0,     0,    10,     0,     0,     0,    10,     0,
  847.      7,     0,     5,     0,     7,     0,     4,     2,     2,     2,
  848.      3,     6,     8,    10,    12,     4,     3,     2,     2,     1,
  849.      1,     0,     0,     7,     1,     2,     2,     0,     0,     5,
  850.      1,     1,     3,     3,     2,     2,     2,     3,     4,     4,
  851.      3,     4,     6,     6,     0,     1,     0,     1,     1,     0,
  852.      1,     1,     3,     4,     1,     3,     0,     1,     1,     1,
  853.      2,     2,     2,     1,     1,     2,     2,     2,     2,     1,
  854.      3,     2,     2,     4,     2,     2,     2,     2,     2,     2,
  855.      1,     2,     1,     3,     1,     1,     0,     0,     1,     0,
  856.      4,     1,     1,     3,     0,     3,     3,     3,     1,     2,
  857.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  858.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  859.      2,     2,     3,     2,     2,     2,     2,     3,     2,     2,
  860.      4,     4,     3,     2
  861. };
  862.  
  863. static const short yydefact[] = {     3,
  864.     10,    10,     5,     0,     4,     0,   220,   523,   307,   317,
  865.    475,     0,     8,     9,     0,     0,   389,     0,   709,     0,
  866.    535,   221,    64,     0,     0,   697,     0,    76,    21,     0,
  867.     11,     6,     0,    15,    14,    13,    12,   277,     0,   524,
  868.    117,   230,   502,     0,   297,     0,   296,   310,     0,   330,
  869.    316,     0,   400,   402,   403,   408,   407,   384,   306,   529,
  870.    486,     0,   229,   231,   485,     0,   525,   318,   473,     0,
  871.      0,   219,    62,    63,   527,     0,     0,   101,   102,   103,
  872.    378,   381,     0,   531,     0,   382,     0,     0,     0,    32,
  873.      0,   307,     0,    22,     0,     0,   400,     0,     0,     0,
  874.      0,   500,     0,     0,     0,   499,     0,     0,     0,     0,
  875.    230,     0,     0,     0,   229,   231,   473,     0,     3,     0,
  876.      0,     0,     0,   402,   403,   700,     0,    88,    83,   277,
  877.      0,     0,    60,   528,   124,   473,     0,   477,    61,     0,
  878.      0,     0,     0,     0,   326,   287,   484,   288,   496,     0,
  879.    473,   309,   308,    59,   298,     0,   328,     0,   303,   323,
  880.    324,   299,   312,   314,   325,     0,    54,   390,   391,   392,
  881.    393,   406,   107,   106,   108,   395,   401,   397,   117,   396,
  882.    409,   409,   423,     0,   476,   311,    72,     0,    75,   533,
  883.    517,   487,   526,     0,   530,     0,   744,   740,   739,   737,
  884.    719,   724,   725,     0,   731,   730,   716,   717,   715,   734,
  885.    723,   720,   721,   722,   726,   727,   713,   714,   710,   711,
  886.    712,   736,   728,   729,   718,   735,     0,   732,   641,   310,
  887.    642,   705,   475,   234,   275,     0,     0,     0,     0,   156,
  888.    271,   269,   247,   273,   274,     0,     0,     0,     0,     0,
  889.      0,     0,   129,   128,     0,   130,   131,     0,     0,   216,
  890.    132,     0,   118,     0,   189,     0,   193,   186,   121,   233,
  891.    155,     0,     0,   235,   236,     0,   120,   294,   310,   295,
  892.    518,   258,   249,     0,     0,     0,   400,   380,     0,   375,
  893.    532,     0,   133,   134,     0,     0,     0,     0,    31,     0,
  894.    110,   409,   125,   109,   115,     0,   498,     0,   497,   102,
  895.    103,   218,   227,     0,   506,   226,     0,   505,     0,   232,
  896.    513,     0,     0,    18,    10,     0,     7,     7,    48,    47,
  897.    700,     0,    34,    42,    38,    36,    43,    40,   332,    82,
  898.     89,    86,     0,     0,   277,     0,     0,     0,   572,    65,
  899.    578,    67,   113,   511,     0,   674,   675,   154,     0,   153,
  900.    669,   691,     0,   294,   310,   295,     0,   668,   670,   698,
  901.    680,     0,   515,     0,     0,     0,   482,     0,   481,     0,
  902.      0,     0,     0,   473,    70,    58,    73,     0,    57,   473,
  903.      0,   477,   495,     0,   300,   301,     0,    55,    71,    56,
  904.     74,   305,   304,   315,   700,   331,   398,   394,   399,   410,
  905.    404,   405,   439,     0,     0,   442,   445,     0,     0,   428,
  906.      0,   700,   313,     0,     0,   346,   474,   501,   534,     0,
  907.      0,   733,   738,   473,   473,     0,   473,   743,     0,     0,
  908.      0,   163,     0,     0,   165,     0,     0,     0,     0,     0,
  909.      0,     0,     0,   162,   159,   158,   160,     0,     0,     0,
  910.      0,   217,     0,   116,   161,     0,     0,   187,     0,     0,
  911.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  912.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  913.    243,   245,   246,   279,   278,     0,     0,     0,     0,     0,
  914.    167,   471,     0,   175,   276,   223,     0,   697,   222,   261,
  915.    262,     0,   289,   552,   548,   557,     0,   477,   473,   473,
  916.    473,   291,   555,     0,   522,   293,     0,   292,   260,     0,
  917.    256,   270,   272,   519,     0,   257,   112,   111,   468,   387,
  918.    466,   377,     0,   319,     0,     0,   320,   321,   322,    33,
  919.      0,    28,    24,   696,   310,    26,   695,    30,   693,   122,
  920.    114,   504,   503,   232,   507,     0,    17,    20,    19,   332,
  921.     53,    49,    51,    52,    50,    46,     0,     0,     0,     0,
  922.    346,   104,    94,   105,     0,    87,    90,     0,     0,     0,
  923.    368,     0,   364,    84,     0,     0,    66,    69,   579,   573,
  924.    473,   473,   673,   686,   679,   677,   552,   548,     0,   687,
  925.    473,   690,   692,   688,     0,   689,   473,   672,   685,   678,
  926.    676,   671,   699,   682,   683,     0,   514,   478,   480,   479,
  927.      0,     0,   494,     0,   346,   327,   490,     0,     0,     0,
  928.    493,     0,   483,   302,   329,   346,   332,   420,     0,   419,
  929.    411,   412,   414,     0,   416,   438,   434,   433,   220,   523,
  930.    473,     0,   667,   700,   435,   443,   448,   449,   700,   700,
  931.    436,   446,   700,     0,   383,   430,   429,   431,   432,   332,
  932.    702,   310,   703,     0,     0,     0,   345,   347,   348,   742,
  933.    741,   705,   705,   705,     0,     0,     0,   522,     0,     0,
  934.    523,     0,   157,     0,     0,     0,     0,     0,     0,   238,
  935.    237,     0,   184,   119,   220,   523,   221,     0,     0,   369,
  936.    385,     0,   215,   214,   659,   658,     0,   212,   211,   209,
  937.    210,   208,   207,   206,   203,   204,   205,   201,   202,   196,
  938.    197,   198,   199,   200,   194,   195,     0,     0,     0,     0,
  939.      0,     0,   169,   181,     0,     0,   168,   473,   473,     0,
  940.    473,   470,   542,     0,     0,     0,     0,   264,     0,   266,
  941.      0,   516,   551,   550,   547,   546,   696,     0,     0,   566,
  942.      0,     0,   563,   290,   564,   553,   473,   667,   477,   552,
  943.    548,     0,     0,   473,   233,     0,   518,     0,     0,     0,
  944.    388,     0,   387,   152,   151,   150,   149,     0,    23,     0,
  945.    395,     0,     0,    16,   346,    35,    39,    37,    41,     0,
  946.      0,    92,     0,    96,     0,   100,     0,    98,     0,   365,
  947.      0,    85,    68,     0,   580,     0,   574,   575,   512,   509,
  948.    551,   547,   552,   548,     0,   485,     0,   473,   553,   552,
  949.    548,     0,   233,     0,   518,   510,     0,   681,   336,   473,
  950.    473,   473,   492,   342,   346,     0,     0,   422,   421,   415,
  951.      0,     0,   441,   346,     0,    79,     0,   332,   332,     0,
  952.    332,     0,   346,     0,   701,     0,     0,   343,   349,   707,
  953.    706,   708,   248,   164,     0,     0,     0,   166,   190,   192,
  954.    191,   254,   255,     0,     0,     0,     0,   240,     0,     0,
  955.      0,     0,   185,     0,   241,   244,   179,   178,   171,     0,
  956.    170,   183,     0,     0,   539,   537,     0,   540,   477,   176,
  957.      0,     0,   267,     0,     0,   549,   545,   556,   473,   565,
  958.    554,   559,     0,   561,     0,     0,   520,   521,     0,   259,
  959.    469,   467,   379,     0,    25,    29,   694,     0,     0,    44,
  960.     93,    91,     0,     0,     0,     0,   366,   362,     0,     0,
  961.    220,   523,   584,   596,   599,     0,   572,     0,     0,     0,
  962.      0,     0,     0,   221,   630,     0,   655,     0,   591,     0,
  963.      0,   310,     0,   568,   589,   595,   567,   590,   631,     0,
  964.    602,   606,   576,   551,   547,   487,   553,   521,   684,   334,
  965.    491,   488,   489,   340,   339,     0,     0,   413,   346,   346,
  966.     78,   458,   473,   220,   523,     0,   444,   450,   451,   700,
  967.    700,   346,   346,   447,     0,   437,   704,   333,   353,     0,
  968.      0,     0,     0,     0,     0,   373,     0,     0,   370,   188,
  969.    213,   126,     0,   172,   173,   180,   182,   538,   536,   543,
  970.    541,     0,   177,     0,   263,   265,   562,   473,   560,   228,
  971.    376,     0,    45,    95,    99,    97,   367,     0,   577,   571,
  972.    583,   645,   647,   572,   572,   572,     0,     0,     0,   616,
  973.    618,   619,   620,     0,     0,     0,   646,   572,   656,     0,
  974.    592,   285,   700,     0,   286,     0,   700,     0,   700,     0,
  975.      0,   581,   570,   569,   593,   629,   628,   572,   572,     0,
  976.      0,   337,   417,   418,   457,   454,   440,     0,     0,   346,
  977.    332,   332,   452,   455,   359,   360,   361,   358,     0,   351,
  978.    354,   344,     0,     0,     0,     0,   371,     0,     0,   126,
  979.    242,     0,   174,   544,   268,   558,   123,   363,     0,     0,
  980.      0,   587,     0,     0,   572,   648,     0,   651,     0,     0,
  981.    612,     0,   621,     0,   627,   632,     0,   281,   332,   283,
  982.    284,   332,     0,     0,     0,   280,   282,   582,   572,     0,
  983.      0,   335,   341,     0,    77,   346,   346,   465,   346,   346,
  984.      0,     0,   353,     0,     0,   250,   251,   252,   253,     0,
  985.    374,   127,   472,   137,     0,   585,   597,   588,   600,   652,
  986.    650,     0,   649,   144,     0,   310,     0,     0,     0,   617,
  987.    626,     0,     0,   594,   141,     0,   140,     0,   338,   464,
  988.    461,   459,   462,   453,   456,   352,   350,   220,     0,   372,
  989.      0,   572,     0,     0,     0,     0,   610,   700,   614,   613,
  990.      0,   635,     0,   633,   660,     0,   603,   607,     0,     0,
  991.      0,   355,   357,   138,   586,   573,   598,   148,   135,     0,
  992.      0,   654,     0,   653,   572,   332,     0,   637,   636,   638,
  993.      0,     0,   661,   662,   622,     0,     0,   460,   463,     0,
  994.    145,     0,     0,   601,   611,   346,   615,   634,     0,   660,
  995.      0,     0,     0,     0,   356,     0,     0,   136,     0,   639,
  996.      0,     0,   623,   663,   604,   608,   147,   146,   142,     0,
  997.    664,     0,     0,     0,     0,     0,     0,     0,   665,     0,
  998.    624,   605,   609,   143,     0,     0,   640,     0,     0,   643,
  999.    644,   666,   625,     0,     0,     0
  1000. };
  1001.  
  1002. static const short yydefgoto[] = {  1354,
  1003.      1,     2,   120,   568,   987,     3,     4,    31,    32,    33,
  1004.    300,   551,   552,   553,    34,    91,    35,   577,   579,   578,
  1005.    580,   576,    36,    37,    38,   415,   129,   130,   131,   341,
  1006.    586,   587,   539,   588,   177,    39,    40,    41,   135,   262,
  1007.    263,   303,   813,   304,  1151,   264,   988,  1281,  1216,  1236,
  1008.   1237,  1336,  1277,   293,   793,   265,   448,   500,   757,   266,
  1009.    267,   268,   294,   270,   510,   313,    43,   271,   460,  1052,
  1010.    272,   273,   274,   275,   132,   276,   989,   405,   520,   777,
  1011.    990,    45,   162,   991,    47,   163,   443,   164,   144,   156,
  1012.     49,   635,   145,  1120,   406,  1194,   157,  1121,    50,  1040,
  1013.    687,   688,   689,  1139,  1140,  1141,   969,   720,   721,    51,
  1014.    543,   289,   912,   802,    52,    53,    54,    55,   181,   182,
  1015.     56,    57,    58,   411,   651,   652,   653,   654,   184,   418,
  1016.    419,   420,   421,   665,   671,   666,  1027,   667,   668,  1028,
  1017.   1029,   540,   541,   501,   783,    59,   374,   375,   146,    60,
  1018.     61,   147,   148,   114,    63,   511,   281,   282,   283,    65,
  1019.    284,    67,    68,   180,    69,   285,   762,   763,   778,   523,
  1020.    993,   994,  1161,   836,   837,   838,   350,   995,   996,  1084,
  1021.   1252,  1163,   997,   998,  1189,  1085,  1253,  1086,  1254,  1118,
  1022.   1296,  1334,  1119,  1297,  1335,  1285,  1229,  1287,  1172,   999,
  1023.   1232,  1290,  1264,  1308,  1330,  1227,  1338,  1000,  1001,  1002,
  1024.   1100,   727,  1292,  1293,  1294,  1340,   367,   779,   369,   370,
  1025.    371,   558,   372,   107,   625,  1179,   683,   684,   438,    71,
  1026.     72
  1027. };
  1028.  
  1029. static const short yypact[] = {    64,
  1030.     80,-32768,-32768,  2131,-32768,   130,-32768,   283,    48,-32768,
  1031. -32768,   556,-32768,-32768,    66,    87,-32768,   206,-32768,  2650,
  1032. -32768,   210,-32768,  1299,  1299,-32768,  1901,-32768,-32768,   292,
  1033. -32768,   333,  3137,-32768,-32768,-32768,-32768,   573,   353,   368,
  1034. -32768,-32768,   166,  1701,-32768,  2829,-32768,  1033,   294,-32768,
  1035. -32768,   540,-32768,-32768,-32768,-32768,-32768,   396,  1486,-32768,
  1036. -32768,   591,-32768,-32768,-32768,    82,-32768,-32768,-32768,   214,
  1037.   6712,-32768,-32768,-32768,-32768,  8620,  2499,-32768,   283,   210,
  1038.    355,   414,   368,-32768,   214,-32768,   214,  8620,  8620,-32768,
  1039.    512,-32768,   210,-32768,  4042,  3298,     1,   214,  8446,   283,
  1040.   2225,-32768,   361,   267,  2225,-32768,   262,  2706,  2706,  1901,
  1041.    383,   435,   166,   453,   495,   498,-32768,   571,   446,  2532,
  1042.    224,  4042,  3192,   680,   723,   521,   617,-32768,    55,    16,
  1043.    143,   143,-32768,-32768,   546,-32768,  6059,   532,-32768,  3255,
  1044.   3255,  4407,   641,   569,-32768,-32768,   255,-32768,-32768,    82,
  1045. -32768,-32768,-32768,-32768,  1033,   669,-32768,   998,-32768,-32768,
  1046. -32768,  1070,   673,-32768,-32768,  4042,-32768,-32768,-32768,-32768,
  1047. -32768,-32768,-32768,-32768,-32768,-32768,-32768,   368,   775,-32768,
  1048.    609,   609,-32768,  2064,-32768,   673,-32768,   604,   970,-32768,
  1049. -32768,-32768,-32768,  3851,-32768,    50,-32768,   605,   633,-32768,
  1050. -32768,-32768,-32768,   640,-32768,-32768,-32768,-32768,-32768,-32768,
  1051. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1052. -32768,-32768,-32768,-32768,-32768,-32768,   601,-32768,-32768,   673,
  1053.   1486,   654,   627,-32768,-32768,  9561,  9644,   659,   664,-32768,
  1054. -32768,-32768,-32768,-32768,-32768,   675,   689,   696,   698,   701,
  1055.    262,  9312,-32768,-32768,  9312,-32768,-32768,  9312,  6796,  3961,
  1056. -32768,   422,-32768,  9312,-32768,  8707,-32768,-32768,  9780,-32768,
  1057.    845,  1829,  8790,-32768,   781,   434,-32768,   126,  1601,  4144,
  1058. -32768,   160,-32768,   475,   813,  4042,     1,-32768,   262,   690,
  1059. -32768,   721,   743,  9688,   726,   728,   734,   800,-32768,  2499,
  1060. -32768,   609,-32768,-32768,-32768,   478,-32768,   125,-32768,-32768,
  1061. -32768,-32768,-32768,  2225,-32768,-32768,  2225,-32768,   758,-32768,
  1062. -32768,  3851,    47,-32768,   729,  2499,-32768,-32768,-32768,-32768,
  1063.    521,   708,-32768,-32768,-32768,-32768,-32768,-32768,   712,-32768,
  1064.    249,-32768,  6886,  8877,-32768,   143,   143,   803,-32768,-32768,
  1065. -32768,-32768,-32768,   855,   765,-32768,-32768,   743,   767,  9688,
  1066.    296,  2466,  3192,  2466,  3043,  3464,   772,-32768,   100,  3351,
  1067.    807,   819,-32768,   776,  8877,  3862,-32768,  3862,-32768,  4280,
  1068.   4280,  4407,   785,-32768,-32768,-32768,   970,  4042,-32768,-32768,
  1069.   6161,   792,-32768,  4311,  1070,  1033,  4042,-32768,-32768,-32768,
  1070.    970,-32768,-32768,-32768,   521,-32768,-32768,-32768,-32768,   905,
  1071. -32768,-32768,-32768,  8877,   447,  1155,  3724,    60,  1544,-32768,
  1072.    252,   521,   673,  2142,   802,   867,-32768,-32768,-32768,   796,
  1073.    798,-32768,-32768,-32768,-32768,   164,-32768,-32768,  8877,   627,
  1074.   6796,-32768,   229,  6796,-32768,  8877,  8964,  9312,  8620,  2142,
  1075.   2142,  2142,  2142,-32768,-32768,-32768,-32768,   805,   809,   803,
  1076.    810,-32768,  8620,-32768,-32768,  6623,  6796,-32768,  8877,  8877,
  1077.   6976,  8877,  8877,  8877,  8877,  8877,  8877,  8877,  8877,  8877,
  1078.   8877,  8877,  8877,  8877,  8877,  8877,  8877,  8877,  8877,  8877,
  1079. -32768,-32768,-32768,-32768,-32768,  8877,  8877,  8877,  8620,  1393,
  1080.    564,   670,  7615,-32768,-32768,   283,   865,   912,-32768,   237,
  1081.    244,   615,-32768,  1080,  1080,-32768,  3796,   814,   837,   884,
  1082. -32768,-32768,   490,  8090,   114,-32768,   188,-32768,-32768,  8877,
  1083. -32768,-32768,-32768,-32768,   626,-32768,-32768,-32768,   877,   874,
  1084. -32768,-32768,   262,-32768,  7438,  7528,-32768,-32768,-32768,-32768,
  1085.    606,   879,-32768,-32768,  3594,   540,-32768,-32768,   887,-32768,
  1086. -32768,-32768,-32768,   844,-32768,   891,-32768,-32768,-32768,   712,
  1087. -32768,-32768,-32768,-32768,-32768,-32768,   893,   896,   897,   903,
  1088.    867,-32768,-32768,   210,  8877,   906,-32768,   280,   420,   436,
  1089. -32768,  6263,  9757,-32768,   849,   143,-32768,-32768,-32768,    24,
  1090. -32768,-32768,-32768,-32768,-32768,-32768,   817,   817,  4802,-32768,
  1091. -32768,-32768,-32768,-32768,  8181,-32768,-32768,-32768,-32768,-32768,
  1092. -32768,-32768,-32768,-32768,   902,  6886,-32768,-32768,-32768,-32768,
  1093.   3862,  3862,-32768,  4311,   867,-32768,   855,   861,   863,   866,
  1094. -32768,   872,-32768,  1070,-32768,   867,   712,-32768,   883,-32768,
  1095.    923,-32768,-32768,   939,-32768,  9757,-32768,-32768,   922,    18,
  1096. -32768,  8877,  2818,   521,   930,-32768,-32768,-32768,   510,   611,
  1097.    934,-32768,   521,   937,-32768,-32768,-32768,-32768,-32768,   748,
  1098. -32768,  3086,-32768,   281,   571,   916,   947,   867,-32768,-32768,
  1099. -32768,   282,   282,   282,   904,   908,  9051,   884,   913,   915,
  1100.    192,   917,-32768,   918,   920,   938,   944,   948,   957,-32768,
  1101. -32768,   932,-32768,-32768,   975,   421,   338,  8877,   976,-32768,
  1102.    987,   941,  9757,  9757,-32768,-32768,   988,  4588,  9818,  4862,
  1103.   4703,  4168,  4535,  3669,  1937,  1937,  1937,  1334,  1334,  1050,
  1104.   1050,   713,   713,   713,-32768,-32768,   955,   954,   959,   958,
  1105.    961,  2142,   564,-32768,  6886,  8877,-32768,-32768,-32768,  8877,
  1106. -32768,-32768,   980,  9312,   967,   981,  1030,-32768,  8877,-32768,
  1107.   8877,-32768,  1350,-32768,  1350,-32768,    71,   977,   978,-32768,
  1108.    973,  2142,   855,-32768,   855,  1728,-32768,  1109,   983,  8272,
  1109.   8272,  5855,   979,  8707,   383,   984,   498,   813,   989,  8877,
  1110.    262,   982,   874,-32768,  9757,-32768,  9757,  2499,-32768,  2761,
  1111.    662,  6886,   396,-32768,   867,-32768,-32768,-32768,-32768,   708,
  1112.    994,-32768,   249,-32768,  8877,-32768,  8877,-32768,  8877,-32768,
  1113.    116,-32768,-32768,   262,-32768,  5585,  1049,-32768,   855,   855,
  1114.   1260,  1260,  1918,  1918,  4802,-32768,    82,-32768,  2412,  8359,
  1115.   8359,  5957,   240,  1005,   341,   855,  6886,-32768,  1031,-32768,
  1116. -32768,-32768,-32768,  1051,   867,  8620,   905,-32768,-32768,-32768,
  1117.   8877,  8877,   152,  4929,  1006,-32768,   401,   712,   712,  3568,
  1118.    755,  2290,   867,  2142,-32768,    54,  1023,-32768,-32768,-32768,
  1119. -32768,-32768,-32768,-32768,  9395,  9395,  7066,-32768,-32768,-32768,
  1120. -32768,-32768,-32768,  1024,  1029,  1032,  1034,-32768,  4688,  6886,
  1121.   6353,  1020,-32768,  8877,-32768,-32768,-32768,-32768,   474,  1035,
  1122. -32768,-32768,  1039,    44,   181,   181,  1027,   181,-32768,-32768,
  1123.   9312,  1128,-32768,  1044,  1046,-32768,-32768,-32768,-32768,-32768,
  1124. -32768,   855,  1059,-32768,  1047,  1062,-32768,-32768,   452,-32768,
  1125.   9757,-32768,-32768,  1063,-32768,-32768,-32768,  2064,   708,-32768,
  1126. -32768,-32768,  1068,  1071,  1073,  6443,-32768,-32768,   745,   289,
  1127.   1075,   575,-32768,-32768,-32768,  1065,-32768,  8877,  1116,  1121,
  1128.   1122,  8533,    67,   572,-32768,  1129,  1175,  1131,-32768,  2565,
  1129.   4428,  2918,  5022,-32768,-32768,  1170,-32768,-32768,-32768,  7718,
  1130. -32768,-32768,-32768,  1260,  1260,-32768,  2412,  1408,-32768,-32768,
  1131.    855,   855,   855,-32768,  1132,  1089,  1093,-32768,  4929,  4929,
  1132. -32768,-32768,-32768,  1138,   624,  8877,-32768,-32768,-32768,   521,
  1133.    521,   867,   867,-32768,  2406,-32768,-32768,-32768,   583,  6886,
  1134.   8877,  8877,  8877,  8877,  6886,-32768,  8877,  1140,-32768,-32768,
  1135.   9801,   546,  8877,-32768,   474,-32768,-32768,-32768,-32768,-32768,
  1136. -32768,  1100,-32768,  1163,-32768,-32768,   855,-32768,-32768,-32768,
  1137. -32768,    73,-32768,-32768,-32768,-32768,-32768,   262,-32768,-32768,
  1138. -32768,-32768,-32768,-32768,-32768,   803,  6533,  1123,  4518,-32768,
  1139. -32768,-32768,-32768,  1153,  8877,  1158,-32768,-32768,-32768,  1130,
  1140. -32768,-32768,   191,   763,-32768,   788,   521,  9138,   427,   797,
  1141.    307,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  6886,
  1142.   6886,-32768,-32768,-32768,-32768,-32768,   152,  8877,  8877,  4929,
  1143.    712,   712,  1159,  1161,-32768,-32768,-32768,-32768,   315,-32768,
  1144.   1133,-32768,  1120,  1126,  1127,  1137,-32768,  9711,  6886,   546,
  1145. -32768,  1119,-32768,-32768,-32768,   855,-32768,-32768,   462,   462,
  1146.   8000,-32768,  1210,  1184,  1139,-32768,  1189,-32768,  8620,  8877,
  1147. -32768,  7820,-32768,  1190,-32768,-32768,   571,-32768,   712,-32768,
  1148. -32768,   712,  9478,  9478,  7156,-32768,-32768,-32768,   803,  7246,
  1149.   7246,-32768,-32768,  6886,-32768,  4929,  4929,-32768,   867,   867,
  1150.   6886,  6886,   583,  1146,  9225,-32768,-32768,-32768,-32768,  6886,
  1151. -32768,-32768,-32768,-32768,  8620,-32768,-32768,-32768,-32768,-32768,
  1152. -32768,  5675,-32768,-32768,  1148,   416,  4042,  9734,  7820,-32768,
  1153. -32768,  5141,    51,-32768,-32768,  1198,-32768,  1199,-32768,-32768,
  1154. -32768,  1174,  1200,-32768,-32768,-32768,-32768,   369,  1154,-32768,
  1155.   1160,   803,  7910,   527,   370,  5273,-32768,   521,-32768,-32768,
  1156.    379,-32768,  5377,-32768,  1248,  1204,-32768,-32768,  6886,  6886,
  1157.   8877,-32768,-32768,-32768,-32768,    25,-32768,-32768,-32768,  8877,
  1158.   1205,-32768,  1213,-32768,   803,   712,  7820,-32768,-32768,-32768,
  1159.   1178,   271,  1216,-32768,-32768,  7336,  7336,-32768,-32768,  1171,
  1160. -32768,  5765,  1172,-32768,-32768,   867,-32768,  1181,  8877,  1248,
  1161.   1222,  1248,  1177,  1187,-32768,   397,  5481,-32768,  1233,-32768,
  1162.   1192,   365,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  1208,
  1163. -32768,  1271,  1236,  7910,  7910,  6886,  3413,   803,-32768,   410,
  1164. -32768,-32768,-32768,-32768,  1195,  1197,-32768,  1296,  1251,-32768,
  1165. -32768,-32768,-32768,  1308,  1309,-32768
  1166. };
  1167.  
  1168. static const short yypgoto[] = {-32768,
  1169.   1191,-32768,-32768,   986,     7,  1310,-32768,-32768,-32768,-32768,
  1170. -32768,-32768,-32768,   507,-32768,-32768,-32768,-32768,-32768,-32768,
  1171. -32768,  -770,  1196,  1207,-32768,-32768,-32768,-32768,  1201,-32768,
  1172. -32768,   496,   135,-32768,-32768,-32768,  2838,   -25,-32768,  1221,
  1173.    888,  -999,-32768,   -88,   178,-32768,   895,-32768,   169,   139,
  1174.  -1101,-32768,  -524,  1474,   -99,   619,-32768,-32768,  -714,  3947,
  1175.     43,  -240,  2252,  2872,   825,  1176,   432,-32768,-32768,-32768,
  1176. -32768,  -273,-32768,  -116,   -94,-32768,   266,    17,  -276,   132,
  1177.     75,  -106,  -109,    -3,  1594,    27,  1371,  -118,  -752,   364,
  1178. -32768,   -82,-32768,-32768,   265,-32768,-32768,-32768,-32768,-32768,
  1179.    327,-32768,   677,-32768,   155,-32768,-32768,   730,   769,    74,
  1180. -32768,-32768,-32768,   560,  -272,    13,  1335,  1336,-32768,-32768,
  1181. -32768,-32768,-32768,  -141,-32768,   500,   716,-32768,   559,   418,
  1182.    497,  -414,-32768,-32768,-32768,-32768,-32768,-32768,   960,-32768,
  1183.    501,   835,   582,   889,  2241,  1820,  -368,-32768,  3695,   -55,
  1184.     10,-32768,  4252,   -90,   717,-32768,  3290,-32768,-32768,  3834,
  1185.     -4,   245,  -328,  1372,  3416,   871,  -214,-32768,  4134,-32768,
  1186.  -1157,  -942,  -343,   117,-32768,   553,   -97,  -122,-32768,-32768,
  1187. -32768, -1137,  -860, -1112,-32768,-32768,-32768,-32768,-32768,-32768,
  1188. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1189. -32768,-32768,-32768,-32768,-32768,   -37,-32768,-32768,-32768,-32768,
  1190. -32768,  -425,    86,-32768,    90,-32768,  -354,  -133,-32768,-32768,
  1191.   -293,  1052,  -286,-32768,-32768,    40,   530,-32768,    57,-32768,
  1192.   -260
  1193. };
  1194.  
  1195.  
  1196. #define    YYLAST        9897
  1197.  
  1198.  
  1199. static const short yytable[] = {    66,
  1200.     46,   323,   525,   368,   677,   600,   557,    85,   351,   351,
  1201.     30,   533,   590,   559,   195,    85,    96,   315,   318,   103,
  1202.    103,    84,   103,   642,   536,   468,   179,   556,    66,   123,
  1203.    362,   291,    97,   232,   352,   347,   640,   359,   921,   150,
  1204.    412,    66,   195,   403,   404,   395,   353,    85,  1218,   960,
  1205.   1113,  1234,  1150,     8,    85,   505,  -124,   834,   834,   505,
  1206.    143,    84,   505,    -1,  1256,   196,    85,  1225,    75,    78,
  1207.    310,   345,    85,    96,  1263,   128,   557,   872,    44,    -2,
  1208.    603,   655,    85,   559,     7,     8,    76,   513,   525,   287,
  1209.    150,    85,    77,    85,    95,   674,   103,   302,   342,   308,
  1210.    103,   189,    93,   103,   103,   103,   426,   122,   674,   618,
  1211.   1265,   301,   343,  1251,  1275,    66,    46,   150,    66,   311,
  1212.   -473,   165,    19,  -473,   429,   604,   835,  1301,   100,   100,
  1213.    605,   697,  1114,   363,    22,   150,   150,   150,   331,  1117,
  1214.   1278,  1095,   344,   348,  1317,  1057,    82,  1305,   566,   781,
  1215.   1150,   286,  1266,    88,   619,  1038,   190,   784,   427,   620,
  1216.    560,   150,   675,   606,    26,   339,   698,   100,  -473,   513,
  1217.    966,  -473,   713,  -473,    89,  1157,    21,    93,    93,    66,
  1218.    417,   396,   387,  -473,   100,    73,   176,   427,  1073,   103,
  1219.    514,     8,   621,   362,    44,   425,   349,   401,   538,   429,
  1220.    515,  -473,  -473,   529,  1054,  -700,  -473,   277,    90,   136,
  1221.    516,  -700,   423,   517,   518,  -473,    93,     8,   967,   295,
  1222.    297,  1278,  1278,   351,   351,   599,    85,   436,   165,   195,
  1223.    277,    21,    74,    93,   502,   165,   165,  1104,   190,  1110,
  1224.     93,   312,    75,   188,   595,   758,  1178,   530,   597,   598,
  1225.    596,   582,     8,   137,   138,   759,   581,   368,   416,   165,
  1226.     76,   533,   190,   362,    78,   310,    93,    85,   361,   760,
  1227.    100,   512,   513,   436,   436,   527,   403,   404,    99,   329,
  1228.    768,   150,   188,  -230,   362,   100,   644,   770,   427,   315,
  1229.    318,   639,   583,   900,   455,    85,   363,   456,   390,    21,
  1230.    457,   584,   537,   165,   404,   603,   465,   678,   875,   103,
  1231.    193,  1230,   103,  1113,   311,   504,   697,   103,   646,    93,
  1232.   1113,    85,    96,   824,   769,   655,   330,  -230,  -230,   193,
  1233.   1310,   771,    21,    75,    93,   884,   585,   712,    97,   695,
  1234.   1153,  -224,   391,   392,  1080,   425,   434,   193,   166,   167,
  1235.    604,    76,   165,  -696,   679,   605,   435,   150,    66,   150,
  1236.    150,   527,  1080,     7,   100,    66,   363,   825,  1260,  1203,
  1237.    570,   150,  1311,   150,  1113,   150,   150,   150,   610,   118,
  1238.    614,   616,   885,   150,  -231,   454,   119,   363,   606,   150,
  1239.    461,  1081,   150,   425,   193,  1114,   747,  -103,   749,   750,
  1240.     95,    19,  1114,  1024,  1025,    85,    99,   425,   133,  1188,
  1241.    362,   150,    66,    22,    66,   417,  1204,   362,   134,    85,
  1242.    945,   160,   161,  1271,  1332,  1080,  1307,    12,  -231,  -231,
  1243.    799,   554,   664,   943,  1080,   190,     7,   506,   165,   507,
  1244.    193,    19,  -225,    26,   647,    85,    85,    85,    85,   183,
  1245.     17,    21,  1080,    22,     7,     8,  1114,   288,   113,   513,
  1246.   1026,   680,   502,   826,  1348,   140,  1333,   290,   165,   165,
  1247.   1272,    75,  1282,   351,    19,   141,   463,     7,     8,   828,
  1248.   -102,  1288,  1186,    26,  -224,   821,    22,   815,   142,    76,
  1249.    703,   464,    19,   416,   590,    85,   165,   436,   833,  1327,
  1250.    657,   554,   362,   697,    22,  1214,   658,   827,   362,   436,
  1251.    436,  1349,   527,   363,   557,    19,   508,   754,   188,    66,
  1252.    363,   559,   361,   829,   533,   403,   429,    22,   193,   368,
  1253.    179,   755,   463,   787,    26,   556,   320,   536,   655,   113,
  1254.    113,   113,    78,    79,   168,   169,   170,   561,   324,  1215,
  1255.    150,    85,   193,   468,   321,   681,   362,    26,    78,    79,
  1256.   1062,   756,  1053,  -287,   865,    84,   298,   299,   886,  -287,
  1257.   1279,   616,   696,   113,   171,   699,   425,   788,   789,   235,
  1258.    705,   706,   707,   708,   709,    78,   310,  1135,  1136,  1137,
  1259.     21,   187,    80,   172,   277,   127,  -508,   883,   722,  -225,
  1260.    719,   188,   150,   150,   847,   363,    21,   754,    80,    81,
  1261.    847,   363,   188,  -700,  1280,  -700,  -700,     7,   506,   340,
  1262.    677,   755,  -700,   388,   389,    75,   150,   150,   165,   150,
  1263.    751,  1097,   128,  1088,  1083,   311,   373,   173,   174,   175,
  1264.     99,   385,   302,    76,  -700,  -700,  -700,   698,  -700,    85,
  1265.   -700,   756,   636,   425,   368,    19,   923,   100,   847,   363,
  1266.    808,   645,   241,  -700,  -288,  -700,  -700,    22,   410,   934,
  1267.   -288,   935,  -700,   100,    75,   809,    21,   436,   160,   161,
  1268.    193,   362,   188,  1129,    12,   362,   425,   436,   436,   436,
  1269.    811,   424,    76,   430,  -700,  -700,   386,    26,  -700,   432,
  1270.   -700,   362,   188,   876,    21,   433,    93,    17,   878,   879,
  1271.   1058,  1059,   881,  1061,   439,   698,   -27,   165,   434,   -27,
  1272.     21,   431,    93,   397,   398,   963,   719,   964,   435,   965,
  1273.    571,   -27,   188,   333,   758,   334,    13,    14,   362,   335,
  1274.   1159,  1160,   195,   115,   759,   362,   446,    85,   890,   891,
  1275.    892,   447,   315,   318,  1176,   165,   193,   450,   760,   315,
  1276.    318,   572,   449,   573,   451,   574,   452,   575,   436,   453,
  1277.    436,   193,    13,    14,  1190,  1191,   336,    85,   337,    13,
  1278.     14,   436,   338,    85,   363,    66,    66,    66,   363,   505,
  1279.    489,   490,   542,   949,   361,  1032,  1033,   545,  1033,  1078,
  1280.   1079,   -81,   550,    85,   363,    85,   930,   -81,   -80,  1342,
  1281.   1343,   113,   113,   113,   -80,   531,     8,   388,  1180,     7,
  1282.      8,  1222,   544,    11,   115,   115,   115,   547,   407,   548,
  1283.    408,   567,   455,   456,   409,   549,   150,   150,   150,   150,
  1284.    847,   363,   397,  1181,   150,   847,   847,   847,   363,   241,
  1285.    532,   388,  1187,    19,   442,   445,   349,    19,   115,   564,
  1286.    513,   427,    85,    21,  -695,    93,   601,    21,   602,    22,
  1287.   1313,  1314,   150,   617,    70,   103,   626,    66,   417,    85,
  1288.    627,   607,    87,   920,   425,   425,   633,   425,   491,   685,
  1289.     98,   608,   455,   456,   104,   104,   641,   104,   686,    26,
  1290.    690,   516,   691,    70,   609,   518,   710,   820,     8,   648,
  1291.    711,   713,  1021,   722,   104,   766,    70,   767,   780,   361,
  1292.    436,   436,    87,   436,   782,   492,   493,   784,   801,    98,
  1293.    494,   495,   496,   497,   800,   649,   810,   455,   456,   554,
  1294.    650,    98,     8,   868,   812,  -228,   814,    98,   816,   698,
  1295.    832,   817,   818,    66,   417,    21,   416,    93,   819,   857,
  1296.    823,   859,   860,  1162,   861,   104,    98,   862,   968,   649,
  1297.    866,   104,   864,  1063,   869,   104,   863,   867,   104,   104,
  1298.    104,   871,   292,   296,   877,   150,    66,   150,   880,    21,
  1299.     70,    93,   104,    70,    13,    14,   882,  1017,   399,   150,
  1300.    150,  -332,   150,   887,   888,   893,  1103,   904,  1109,   894,
  1301.    104,   104,   104,   905,   898,   681,   899,   906,   901,   902,
  1302.   -700,   903,  -700,  -700,  -332,  -332,   907,  -332,   461,  -700,
  1303.     66,   417,   416,   908,  -101,   910,   104,   159,   160,   161,
  1304.    113,   911,   913,   557,    12,  1048,   113,   914,  1199,  1200,
  1305.   1346,  -700,  -700,   400,    70,  -700,   915,  -700,   916,   918,
  1306.   1233,   917,   919,   932,   104,   165,  1162,    17,   929,  1131,
  1307.   1132,   931,   594,   933,   402,   160,   161,   940,   938,   939,
  1308.    947,    12,   834,   100,   953,   948,    11,   944,  1010,   188,
  1309.    950,   193,   315,   318,   113,   961,   115,   115,   115,   646,
  1310.   1048,    98,   104,   847,    17,  1249,  1008,  1023,  1014,   416,
  1311.   1039,  1041,     8,    92,    10,    11,  1042,  1096,   356,  1043,
  1312.     12,  1044,  1050,   513,   486,   487,   488,   489,   490,  1162,
  1313.     21,  1060,    93,  1064,  1082,    15,  1055,   425,   425,    16,
  1314.   1056,   959,    98,    17,   514,  1065,  1182,  1066,   104,   104,
  1315.     70,  1069,  1087,   459,   515,   535,   104,   659,   660,    21,
  1316.   1068,    93,  1162,  1070,   516,  1071,  1195,   517,   518,  1074,
  1317.     98,  1300,  1075,  1138,  1076,  1090,  1091,  1092,   847,   847,
  1318.    847,  1099,  1098,  1115,   104,   425,  1101,   104,   425,  1122,
  1319.   1123,  1015,   104,   193,  1124,    19,    98,  1128,   661,  1149,
  1320.   1022,   357,   112,  1306,  1154,    21,  1155,    22,  1173,  1036,
  1321.   1169,    98,  1158,  1175,   662,  1347,  1201,  1177,  1202,   140,
  1322.   1205,  1206,   150,  1213,  1219,   455,   456,  1207,  1208,   141,
  1323.    362,  1269,   104,    70,   104,   104,    70,    26,  1209,  1220,
  1324.     70,  1221,   663,  1258,  1223,  1231,   104,  1247,   104,  1257,
  1325.    104,   104,   104,  1267,  1268,  1273,  1291,  1270,   104,  1295,
  1326.   1304,  1274,     7,     8,   104,  1309,   185,   104,  1080,   628,
  1327.   1312,  1320,  1315,  1318,   113,   113,   113,  1323,  1325,  1339,
  1328.     98,   113,   113,   113,   316,   319,   104,    70,  1326,    70,
  1329.   1329,  1341,   425,  1331,    98,  1337,  1350,  1286,  1351,   165,
  1330.     19,     7,   100,   513,  1352,    11,  1353,  1355,  1356,   325,
  1331.     21,     5,    22,   569,   955,   327,   461,   112,   962,   306,
  1332.     98,    98,    98,    98,   607,   115,   328,  1212,  1217,  1238,
  1333.    346,   115,    85,   363,   608,   459,   772,  1138,   459,    19,
  1334.    700,   702,    26,   704,   516,  1125,  1126,   609,   518,    21,
  1335.    714,    22,  1168,   100,  1106,   858,   185,  1246,  1133,  1134,
  1336.    831,   459,   954,    24,   889,   726,  1018,   124,   125,   870,
  1337.     98,   958,   104,    25,    48,  1072,   672,   803,  1035,   115,
  1338.   1034,    26,   952,    86,   104,   104,    27,    70,   753,  1003,
  1339.     48,   748,  1302,   513,   798,  1322,     8,   765,    10,    11,
  1340.     21,  1324,    93,    48,    12,   535,   484,   485,   486,   487,
  1341.    488,   489,   490,  1037,   514,     0,   155,  -232,     0,    15,
  1342.      0,   624,     0,    16,   515,   104,    87,    17,     0,   186,
  1343.      0,     0,  -232,  -232,   516,     0,     0,   517,   518,  -232,
  1344.      0,   230,     0,    21,     0,    93,   279,    48,     0,     0,
  1345.      0,  -232,     0,     0,     0,     0,  1198,     0,   279,   279,
  1346.      0,     0,  -232,  -232,     0,  -232,   155,  -232,   554,   279,
  1347.      0,     0,     0,     0,     0,     0,     0,   104,   104,    70,
  1348.    752,     0,     0,     0,   922,   798,     0,     0,     0,     8,
  1349.     48,    10,   185,   155,     0,  -232,  -232,    12,     0,  -232,
  1350.   -232,   104,   104,     0,   104,     0,     0,   365,     0,  -232,
  1351.      0,     0,    15,     0,     0,     0,    16,     0,     0,     0,
  1352.     17,     0,  1240,  1241,    98,  1242,  1243,     0,     0,     0,
  1353.      0,     0,     0,    70,     0,     0,    21,     0,    93,   113,
  1354.      0,   957,     0,     0,   413,     0,     7,     8,    92,    10,
  1355.     11,     0,   104,     0,    48,    12,   316,   319,     0,   115,
  1356.    115,   115,   104,   104,   104,     0,   115,   115,   115,     0,
  1357.     15,     0,     0,     0,    16,     0,     0,     0,    17,  -425,
  1358.      0,     0,     0,     0,    19,     0,  1009,     0,     0,     0,
  1359.      0,     0,     0,     0,    21,     0,    22,     0,     0,   676,
  1360.      0,   186,     0,   414,   100,     0,   160,   161,    24,     0,
  1361.    358,     0,    12,     0,   113,   113,   113,     0,    25,     0,
  1362.      0,     0,    98,     0,     0,     0,    26,     0,     0,   279,
  1363.      0,    27,  1319,     0,     0,    17,     0,     0,     0,  1046,
  1364.   1049,     0,   230,   104,   513,   104,  -425,     0,     0,     0,
  1365.    186,    21,    98,    93,   927,     0,   104,     0,    98,     0,
  1366.    798,   798,   798,     0,   229,   514,     0,     0,   535,   278,
  1367.    555,     0,     0,     0,     0,   515,     0,     0,    98,     0,
  1368.     98,   278,   278,     0,     0,   516,   459,     0,   524,   518,
  1369.      0,     0,   278,    98,     0,  1049,    48,     0,     0,   796,
  1370.      0,     0,     0,     7,     8,     0,     0,     0,     0,     0,
  1371.      0,   104,   104,   104,   104,    70,     0,     0,     0,   104,
  1372.    798,   798,   798,     0,     0,     0,     0,     0,     0,     0,
  1373.    364,   100,     0,   155,   427,     0,   186,    98,     0,     0,
  1374.    555,    19,     0,     0,     0,     0,   459,   104,     0,     0,
  1375.    104,    21,    70,    22,    98,     0,   139,     0,     0,     0,
  1376.   1016,   365,     0,     0,     0,   140,     0,     0,     0,  1142,
  1377.      0,   513,     0,     0,  1147,   141,     0,     0,    21,     0,
  1378.     93,     0,     0,    26,   112,     0,     0,   155,   142,    48,
  1379.    854,   459,   514,     0,   682,   104,   104,     0,   104,     0,
  1380.      0,     0,   515,     0,     0,     0,     0,     0,     0,     0,
  1381.      0,   279,   516,     0,   279,   517,   518,   358,     0,   279,
  1382.    682,   682,   682,   682,   115,     0,     0,     0,    70,     0,
  1383.      0,     0,     8,   279,    10,    11,     0,   279,   112,     0,
  1384.     12,     0,     0,   101,   105,     0,     0,     0,     0,  1192,
  1385.   1193,     0,   278,     0,     0,    15,     0,     0,     0,    16,
  1386.    104,    70,   104,    17,   358,   229,     0,     0,     0,   279,
  1387.    230,     0,   796,     0,   104,   104,  1094,   104,  1211,    21,
  1388.      0,    93,   498,     0,     0,     0,     0,   555,     0,     0,
  1389.    231,     0,     0,   364,   365,   280,     0,     0,     0,   115,
  1390.    115,   115,     0,     7,   100,    70,     0,   280,   280,     0,
  1391.      0,     0,   358,     0,     0,     0,   499,     0,   280,     0,
  1392.      7,     8,     0,  1239,    11,     0,     0,   314,   317,     0,
  1393.   1244,  1245,     0,     0,     0,  1143,  1144,  1145,  1146,  1250,
  1394.      0,    19,     0,     0,     0,     0,     0,  1152,     0,     0,
  1395.      0,    21,     0,    22,     0,     0,   366,     0,    19,   376,
  1396.    378,   513,     0,   364,     0,   108,   316,   946,    21,   358,
  1397.     22,   358,   358,     0,     0,   109,     0,     0,   798,   555,
  1398.      0,  1167,   843,    26,   364,   365,     0,     0,   110,  1174,
  1399.      0,     0,   844,     0,     0,     0,     0,   358,  1298,  1299,
  1400.     26,     0,   516,   358,     0,   845,   518,   482,   483,   484,
  1401.    485,   486,   487,   488,   489,   490,     0,   278,     0,   316,
  1402.    319,     0,     0,     0,     0,     0,   316,   319,     0,     0,
  1403.      0,     0,     0,   555,   278,     0,     0,   278,     0,     0,
  1404.      0,     0,   278,   278,   278,   278,   278,     0,     0,     0,
  1405.      0,     0,     0,   798,   798,   798,   278,     0,   358,     0,
  1406.    278,     0,     0,  1224,   413,  1344,     7,     8,    92,    10,
  1407.     11,   316,   946,     0,     0,    12,     0,     0,   280,   459,
  1408.      0,     0,     0,     0,  1224,  1224,     0,     0,   358,     0,
  1409.     15,   231,   278,   229,    16,     0,     0,   104,    17,  -424,
  1410.      0,     0,     0,     0,    19,     0,     0,     0,     0,  1224,
  1411.    364,     0,     0,     0,    21,     0,    22,   364,     0,   366,
  1412.      0,     0,   682,   414,     0,     0,   924,     0,    24,     0,
  1413.      0,     6,     0,     7,     8,     9,    10,    11,    25,     0,
  1414.      0,     0,    12,     0,     0,     8,    26,    10,    11,     0,
  1415.      0,    27,   682,    12,     0,    13,    14,    15,   555,     0,
  1416.      0,    16,   365,     0,     0,    17,  -424,     0,    15,    18,
  1417.    358,    19,    16,     0,  1303,    20,    17,     0,   555,     0,
  1418.    956,    21,     0,    22,     0,     0,    23,     0,     0,   366,
  1419.    726,   726,    21,     0,    93,    24,     0,     0,     0,   631,
  1420.    632,     0,   364,  1321,     0,    25,   992,    98,   364,     0,
  1421.    366,     0,     0,    26,     0,   555,     0,     0,    27,     0,
  1422.      0,     0,   365,     0,    28,    29,     0,     7,   100,   358,
  1423.      0,   185,     0,     0,     0,     0,   279,     0,     0,     0,
  1424.      0,     0,   358,   280,   358,     0,     0,     0,     0,     0,
  1425.      0,     0,    48,     0,   682,     0,   364,     0,     0,     0,
  1426.    280,     0,     0,   280,     0,    19,     0,   279,   280,   280,
  1427.    280,   280,   280,     0,     0,    21,     0,    22,     0,     0,
  1428.      0,     0,   280,   854,     0,     0,   280,     0,     0,    24,
  1429.    413,     0,     7,     8,    92,    10,    11,     0,   358,    25,
  1430.    358,    12,   358,     0,     0,     0,     0,    26,     0,   194,
  1431.      0,     0,    27,     0,     0,     0,    15,     0,   280,   231,
  1432.     16,     0,     0,     0,    17,  -427,     0,   269,    48,     0,
  1433.     19,     0,     0,   773,   775,     0,   366,     0,     0,     0,
  1434.     21,     0,    22,   366,     0,   278,     0,     0,     0,   414,
  1435.    269,     0,     0,     0,    24,     0,     0,   322,     0,   316,
  1436.    319,   155,     0,   992,    25,     0,     0,     0,     0,     0,
  1437.    992,     0,    26,     0,     0,   278,   354,    27,     0,     0,
  1438.      0,   364,     0,     0,     0,   364,     0,     0,   360,     0,
  1439.      0,   394,  -427,     0,     0,     0,     0,     0,     0,     0,
  1440.      0,   364,     0,     0,     0,    48,   413,     0,     7,     8,
  1441.     92,    10,    11,     0,     7,     8,     0,    12,   427,     0,
  1442.      0,     0,     0,     0,     0,     0,   841,   842,   366,     0,
  1443.      0,     0,    15,     0,   366,     0,    16,     0,   364,     0,
  1444.     17,  -426,     0,     0,     0,   364,    19,     0,     0,     0,
  1445.      0,     0,    19,     0,     0,   513,    21,   992,    22,   278,
  1446.      0,   676,    21,     0,    22,   414,     0,     0,     7,     8,
  1447.     24,     0,     0,     0,     0,     0,   607,   278,     0,     0,
  1448.     25,     0,   366,     0,     0,     0,   608,     0,    26,     0,
  1449.    278,     0,     0,    27,    26,     0,   516,     0,     0,   609,
  1450.    518,     0,     8,    92,    10,    11,    19,     0,  -426,   513,
  1451.     12,   462,     0,     0,     0,     0,    21,     0,    22,     0,
  1452.      0,     0,     0,     0,     0,    15,     0,     0,     0,    16,
  1453.    607,   992,     6,    17,     7,     8,     9,    10,    11,  1226,
  1454.    608,     0,   992,    12,     0,     0,     0,     0,    26,    21,
  1455.    516,    93,     0,   609,   518,   279,     0,     0,    15,     0,
  1456.   1226,  1226,    16,     0,     0,     0,    17,     7,     8,     0,
  1457.      0,   280,    19,     0,     0,     0,   326,     0,     0,     0,
  1458.      0,   358,    21,     0,    22,  1226,     0,    23,     0,     0,
  1459.      0,     0,   992,     0,   593,   360,    24,     0,     0,   992,
  1460.      0,   280,   992,     0,     0,    19,    25,   366,     0,   773,
  1461.    775,   366,     0,     0,    26,    21,     0,    22,     0,    27,
  1462.   1102,     0,     0,   992,   634,    28,   992,   366,     0,   140,
  1463.    637,     0,     0,   992,     0,     0,     0,     0,     0,   141,
  1464.      0,     0,   360,     0,     0,     0,     0,    26,     0,     0,
  1465.      0,     0,   142,     8,    92,    10,    11,   992,     0,     0,
  1466.      0,    12,  1004,  1005,   366,   656,     0,     0,     0,  1004,
  1467.   1005,   366,   992,     0,   692,   693,    15,   694,   358,     0,
  1468.     16,     0,     0,     0,    17,   280,     0,   992,     0,     0,
  1469.    360,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1470.     21,     0,    93,   280,   992,   992,     0,   555,     7,   100,
  1471.      0,     0,    11,     0,   269,     0,   280,   593,    94,     0,
  1472.    723,   724,     0,   728,   729,   730,   731,   732,   733,   734,
  1473.    735,   736,   737,   738,   739,   740,   741,   742,   743,   744,
  1474.    745,   746,     0,     0,   358,     0,    19,   360,     0,   360,
  1475.    360,     0,     0,     0,     0,     0,    21,     0,    22,     0,
  1476.    785,   786,   229,     0,     8,   785,    10,     0,     0,     0,
  1477.    108,     0,    12,     0,     0,   360,     0,     0,   278,     0,
  1478.    109,   360,     0,   229,   229,     0,     0,    15,    26,     0,
  1479.      0,    16,     0,   110,     0,    17,   805,   807,     0,     0,
  1480.      0,     0,     0,     0,     0,     0,     0,     0,   229,     0,
  1481.      0,    21,     0,    93,     0,     0,     0,     0,     0,     0,
  1482.      7,     8,    92,    10,    11,     0,     0,   356,     0,    12,
  1483.      0,     7,     8,   152,    10,   153,   360,     0,     0,     0,
  1484.     12,   839,   840,   593,    15,     0,     0,     0,    16,    83,
  1485.      0,   849,    17,     0,     0,    15,     0,   856,    19,    16,
  1486.      0,    83,    83,    17,    83,     0,   360,     0,    21,    19,
  1487.     22,     0,     0,     0,     0,    42,     0,   593,     0,    21,
  1488.      0,    22,   380,     0,   154,     0,     0,     0,     0,   178,
  1489.      0,     0,   381,    24,     0,    42,    42,     0,   111,     0,
  1490.     26,   873,     0,    25,    42,   382,     0,     0,     0,     0,
  1491.    357,    26,     0,   874,     0,    42,    27,    42,     0,     0,
  1492.      7,     8,   159,   160,   161,     0,     0,     0,     0,    12,
  1493.    364,     0,     0,     0,     0,     0,     0,   191,    83,     0,
  1494.     83,    83,    83,     0,     0,    83,    83,    83,   360,     0,
  1495.      0,     0,    17,     0,     0,     0,     0,     0,    19,     0,
  1496.      0,   513,     0,     0,     0,     0,    42,     0,    21,   909,
  1497.     22,     0,    42,     0,   191,     0,    42,     0,     0,   111,
  1498.    111,   111,   140,     0,     0,     0,     0,     0,   231,     0,
  1499.      0,    42,   141,    42,    42,     0,     0,     0,   925,   926,
  1500.     26,   928,   631,   632,   280,  1108,   593,   360,     0,   231,
  1501.    231,    42,    42,   111,     0,     0,     0,     0,     0,     0,
  1502.    360,   191,   360,     0,     0,     0,     0,   942,     0,     0,
  1503.      0,    83,     0,     0,   231,     0,     0,    42,     0,     0,
  1504.      0,     0,     0,     0,     0,     7,     8,   159,   160,   161,
  1505.      0,   951,     0,     0,    12,    42,     0,     0,     0,     0,
  1506.      0,     0,     0,   593,     0,    42,     0,     0,     0,    83,
  1507.      0,     0,     0,     0,     0,     0,   360,    17,   360,     0,
  1508.    360,     0,     0,    19,     0,     0,   513,     0,  1007,   100,
  1509.      0,   160,   161,    21,     0,    22,     0,    12,     0,     0,
  1510.   1011,  1012,  1013,     0,     0,     0,     0,   607,   593,     0,
  1511.      0,     0,     0,    83,     0,    83,    83,   608,     0,     0,
  1512.     17,     0,  1019,  1020,     0,    26,     0,   516,     0,   513,
  1513.    615,   518,     0,     0,     0,     0,    21,   121,    93,     7,
  1514.      8,    92,    10,    11,     0,    83,     0,   509,    12,     0,
  1515.    514,    83,     0,     0,    83,   191,   366,    42,     0,    83,
  1516.    515,   593,   593,    15,     0,  1051,     0,    16,     0,     0,
  1517.    516,    17,     0,   517,   518,     0,     0,    19,     0,  1067,
  1518.      0,     0,     0,     0,     0,    42,     0,    21,    42,    22,
  1519.      0,     0,     0,    42,     7,     8,   152,    10,   153,     0,
  1520.      0,    24,     0,    12,     0,     0,     0,     0,     0,     0,
  1521.      0,    25,     0,     0,     0,     0,     0,   593,    15,    26,
  1522.      0,     0,    16,     0,    27,     0,    17,     0,     0,  1089,
  1523.      0,     0,    19,    42,    42,    42,    42,     0,     0,     0,
  1524.      0,    42,    21,     0,    22,     0,     0,    42,     0,    42,
  1525.      0,   111,   111,   111,     0,     0,    24,     7,     8,    42,
  1526.      0,    11,     0,  1127,     0,    42,    25,     0,    42,     0,
  1527.      0,     0,     0,    83,    26,     0,     0,  1130,     0,    27,
  1528.      0,     0,     0,     0,     0,     0,     0,    42,    42,     0,
  1529.     42,   593,     0,    64,     0,    19,   593,     0,  1148,     0,
  1530.      0,     8,   152,    10,   153,    21,     0,    22,  1156,    12,
  1531.      0,     0,     0,    64,    64,     0,   116,     0,     0,   140,
  1532.      0,     0,    64,     0,    15,     0,     0,     0,    16,   141,
  1533.      0,     0,    17,    64,     0,    64,     0,    26,     0,    83,
  1534.      0,     0,   142,     0,     0,     0,     0,     0,    21,    83,
  1535.     93,    83,    83,     7,     8,    92,    10,    11,     0,   360,
  1536.    622,     0,    12,     0,     0,     0,     0,     0,     0,     0,
  1537.      0,   593,   593,     0,     0,     0,     0,    15,     0,  1196,
  1538.   1197,    16,     0,   509,    64,    17,     0,     0,     0,     0,
  1539.     64,    19,     0,   178,    64,   795,     0,   116,   116,   116,
  1540.    593,    21,     0,    22,     0,     0,     0,     0,     0,    64,
  1541.      0,    64,    64,     0,     0,    24,     8,    92,    10,    11,
  1542.      0,  1228,  1345,     0,    12,    25,    42,     0,     0,    64,
  1543.     64,   116,     0,    26,     0,     0,     0,     0,    27,    15,
  1544.      0,     0,   117,    16,     0,   593,     0,    17,     0,     0,
  1545.      0,     0,   593,   593,     0,    64,   360,     0,     0,   151,
  1546.      0,   593,     0,    21,     0,    93,  -306,     8,  -306,    10,
  1547.    185,     0,     0,    64,     0,    12,     0,     0,    42,    42,
  1548.    111,     0,     0,    64,     0,     0,   853,     0,     0,     0,
  1549.     15,     0,     0,     0,    16,     0,     0,     0,    17,     0,
  1550.      0,     0,    42,    42,  -306,    42,     0,   513,     0,     0,
  1551.    151,     0,     0,     0,    21,     0,    93,     0,     0,    83,
  1552.    593,   593,   360,   117,   117,   117,     0,     0,   514,    83,
  1553.     83,    83,     0,     0,   111,     0,     0,   151,   515,     0,
  1554.      0,     0,     0,     0,     0,     0,  -306,     0,   516,     0,
  1555.      0,   517,   518,     0,     0,   151,   151,   384,     0,     0,
  1556.      0,     0,     0,     0,     0,     0,     0,     0,   795,     0,
  1557.   1024,   100,     0,     0,   534,    64,     0,     0,     0,     0,
  1558.      0,   151,     0,     0,     0,     0,     0,   593,     0,     0,
  1559.      0,     0,     0,     0,     0,     0,     7,     8,   159,   160,
  1560.    161,     0,     0,    64,     0,    12,    64,     0,    19,     0,
  1561.     83,    64,    83,     0,     0,     0,     0,     0,    21,     0,
  1562.     22,     0,     0,    83,     0,     0,     0,  1026,    17,     0,
  1563.    589,     0,    24,     0,    19,     0,     0,   513,     0,     0,
  1564.      0,     0,    25,     0,    21,     0,    22,   437,     0,     0,
  1565.     26,    64,    64,    64,    64,    27,     0,     0,   607,    64,
  1566.      0,   795,   795,   795,     0,    64,     0,    64,   608,   116,
  1567.    116,   116,     0,     0,     0,     0,    26,    64,   516,     0,
  1568.      0,   609,   518,    64,     0,     0,    64,     0,     0,     0,
  1569.      0,     0,     0,   521,   521,   521,     0,     0,     0,     0,
  1570.      0,   151,     0,     0,     0,    64,    64,     0,    64,     0,
  1571.      0,     0,    42,    42,   111,   111,   111,    83,   191,     0,
  1572.     42,   853,   853,   853,     0,     0,   659,     8,   152,    10,
  1573.    153,     0,     0,     0,     0,    12,   479,   480,   481,   482,
  1574.    483,   484,   485,   486,   487,   488,   489,   490,    42,     0,
  1575.     15,    42,     0,    42,    16,     0,     0,     0,    17,     0,
  1576.      0,     0,    83,    83,    19,    83,   795,   795,   795,     0,
  1577.      0,     0,     0,     0,    21,     0,    22,   611,     0,   611,
  1578.    611,   521,     0,   662,     0,     0,     0,     0,    24,     0,
  1579.      0,   151,     0,   151,     0,   384,   384,   384,    25,     8,
  1580.     92,    10,    11,   151,     0,   356,    26,    12,     0,   151,
  1581.      0,    27,   151,   797,     0,     0,     0,     0,     0,     0,
  1582.    191,     0,    15,     0,     0,     0,    16,     0,     0,    42,
  1583.     17,   151,     0,     0,   377,   379,   383,     0,     0,   513,
  1584.      0,     0,     0,     0,    64,     0,    21,     0,    93,     0,
  1585.      0,     0,     0,     7,   100,     0,     0,   427,     0,     0,
  1586.    514,    42,    42,    42,     7,     8,     0,     0,   185,     0,
  1587.    515,     0,     0,     0,     0,    42,    42,   149,    42,     0,
  1588.    516,     0,     0,   517,   518,     0,     0,     0,   357,     0,
  1589.      0,    19,     0,     0,     0,     0,    64,    64,   116,   192,
  1590.      0,    21,    19,    22,   855,     0,    42,     0,     0,     0,
  1591.      0,     0,    21,     0,    22,    24,     0,   761,   192,     0,
  1592.     64,    64,     0,    64,     0,    25,   140,     0,   149,   521,
  1593.    521,     0,   521,    26,     0,     0,   141,     0,    27,   521,
  1594.      0,     0,     0,     0,    26,     0,     0,     0,     0,   142,
  1595.      0,     0,   116,     0,     0,   149,     0,     0,     0,     0,
  1596.      0,     0,     0,     7,     8,     0,    10,   440,   234,   235,
  1597.    611,   236,    12,   149,   149,   149,     0,     0,     0,   853,
  1598.      0,     0,     0,   393,     0,     0,   797,    15,   237,   238,
  1599.    239,    16,     0,   240,     0,    17,     0,   241,   242,   149,
  1600.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  1601.    250,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  1602.      0,     0,   611,   611,   848,     0,     0,     0,     0,   192,
  1603.    848,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1604.      0,   256,   257,   258,     7,     8,   151,   151,   259,   151,
  1605.      0,     0,   260,     0,   853,   853,   853,     0,     0,     0,
  1606.      0,     0,     0,     0,   261,     0,     0,     0,     0,     0,
  1607.    629,     0,   630,     0,   377,   379,   383,     0,   384,   797,
  1608.    797,   797,    19,     0,     0,     0,     0,   534,   643,     0,
  1609.      0,     0,    21,     0,    22,     0,     0,   521,    42,     0,
  1610.      0,     0,     0,     0,     0,     0,   140,   437,   437,   437,
  1611.    669,     0,   589,     0,     0,     0,   141,   192,     0,   149,
  1612.      0,     0,     0,     0,    26,     0,     0,     0,     0,   142,
  1613.     64,    64,   116,   116,   116,     0,     0,     0,    64,   855,
  1614.    855,   855,     0,     0,     0,     0,     0,     8,     0,    10,
  1615.    185,     0,     0,     0,     0,    12,     0,     0,     0,     0,
  1616.      0,     0,     0,     0,     0,     0,    64,     0,     0,    64,
  1617.     15,    64,     0,     0,    16,     0,     0,     0,    17,     0,
  1618.      0,     0,     0,     0,   797,   797,   797,   513,   521,     0,
  1619.    521,     0,     0,     0,    21,   149,    93,   149,   149,     0,
  1620.      0,   521,     0,     0,     0,   521,   521,   521,   514,   149,
  1621.      0,   149,     0,   149,   149,   149,     0,     0,   515,     0,
  1622.      0,   149,     0,     0,   519,   519,   519,   149,   516,     0,
  1623.    149,   517,   518,   477,   478,   479,   480,   481,   482,   483,
  1624.    484,   485,   486,   487,   488,   489,   490,    64,     0,   149,
  1625.      0,     0,     0,     0,     0,    62,   611,   611,   848,   848,
  1626.    848,     0,     0,     0,   611,   848,   848,   848,     0,     0,
  1627.      0,     0,     0,     0,     0,   102,   106,     0,     0,    64,
  1628.     64,    64,     7,     8,   126,     0,    11,     0,     0,     0,
  1629.      0,     0,   151,    64,    64,     0,    64,   158,     0,     0,
  1630.      0,   377,   379,   383,     0,     0,     0,     0,   519,   383,
  1631.    519,   519,   519,     7,     8,     0,     0,   427,     0,     0,
  1632.     19,     0,     0,     0,    64,   629,   630,     0,   643,     0,
  1633.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  1634.    761,   761,     0,   761,   380,     0,     0,     0,     0,     0,
  1635.      0,    19,   307,     0,   381,     0,   309,   383,     0,     0,
  1636.    192,    21,    26,    22,     0,     0,     0,   382,     0,     0,
  1637.      0,    62,     0,     0,   332,   140,     0,     0,     0,     0,
  1638.      0,     0,     0,     0,     0,   141,     0,     0,   149,     0,
  1639.      0,   102,   106,    26,     0,     0,     0,   855,   142,     0,
  1640.      0,     0,     0,     0,     0,   151,     0,   151,     0,     7,
  1641.      8,   522,   526,   528,     0,     0,     0,     0,     0,   611,
  1642.    611,     0,   611,     0,     0,     0,     0,     0,     0,     0,
  1643.      7,     8,   152,    10,   153,   422,     0,     0,     0,    12,
  1644.    149,   149,   846,     0,     0,   428,     0,    19,   846,     0,
  1645.      0,     0,     0,     0,    15,     0,     0,    21,    16,    22,
  1646.    519,   519,    17,   519,   149,   149,     0,   149,    19,     0,
  1647.    794,   380,   855,   855,   855,     0,     0,     0,    21,     0,
  1648.     22,   381,     0,  1105,     0,     0,     0,     0,     0,    26,
  1649.      0,     0,    24,     0,   382,   612,   846,   522,   526,   528,
  1650.      0,   519,    25,     0,     0,     0,     0,     0,     0,     0,
  1651.     26,     0,     0,     0,     0,    27,    64,     0,     0,     0,
  1652.      0,     0,     0,   384,     0,     0,     0,  1170,     0,     0,
  1653.      0,     0,     0,     0,     0,   629,   630,   377,   379,   383,
  1654.      0,     0,     0,   643,   377,   379,   383,     0,     0,     0,
  1655.      0,     0,     0,   519,   519,   519,     0,     0,     0,     0,
  1656.      0,   794,     0,     0,     0,   562,     0,     0,   563,     0,
  1657.      0,  1030,     0,   565,   469,   470,   471,  1171,   472,   473,
  1658.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1659.    484,   485,   486,   487,   488,   489,   490,     0,   384,   384,
  1660.    384,   478,   479,   480,   481,   482,   483,   484,   485,   486,
  1661.    487,   488,   489,   490,   613,     0,     0,     0,     0,     0,
  1662.      0,   623,     0,     0,     0,     0,     0,   307,   519,   309,
  1663.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1664.      0,     0,   151,     0,     0,   428,     0,   774,   776,   473,
  1665.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1666.    484,   485,   486,   487,   488,   489,   490,   670,   673,     0,
  1667.    422,     0,     0,     0,   149,   149,   149,   149,   846,     0,
  1668.   1006,     0,   149,   846,   846,   846,     0,     0,   526,     0,
  1669.      0,     0,     0,     0,     0,     0,     0,     0,   629,   630,
  1670.      0,   643,     0,     0,     0,     0,     0,     0,     0,     0,
  1671.    149,     0,     0,     0,     0,     0,     0,     0,     0,   519,
  1672.      0,   519,     0,     0,     0,     0,     0,     0,     0,     0,
  1673.      0,     0,   519,     0,     0,     0,   794,   794,   794,     0,
  1674.    774,   776,     0,     0,   469,   470,   471,     0,   472,   473,
  1675.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1676.    484,   485,   486,   487,   488,   489,   490,   476,   477,   478,
  1677.    479,   480,   481,   482,   483,   484,   485,   486,   487,   488,
  1678.    489,   490,   192,     0,     0,     0,     0,   519,   519,   519,
  1679.    519,   519,  1045,     0,     0,   519,   794,   794,   794,     0,
  1680.      0,     0,   383,     0,     7,     8,    92,    10,    11,     0,
  1681.      0,   356,     0,    12,     0,   526,     0,     0,     0,     0,
  1682.      0,     0,     0,   149,     0,   149,     0,     0,    15,     0,
  1683.      0,     0,    16,     0,     0,     0,    17,   149,   149,     0,
  1684.    149,     0,    19,     0,     0,   513,     0,     0,     0,     0,
  1685.      0,     0,    21,     0,    22,     0,     0,     0,   102,   106,
  1686.      0,     0,     0,     0,     0,     0,   843,     0,     0,     0,
  1687.      0,     0,     0,     0,     0,     0,   844,   377,   379,   383,
  1688.      0,     0,   562,   563,    26,   565,   516,     0,     0,   845,
  1689.    518,     0,     0,     0,   357,     0,     0,     0,     0,     0,
  1690.      0,     0,     0,     0,     0,     0,   936,     0,   937,     0,
  1691.      0,     0,     0,     0,     0,     0,     0,     0,     0,   941,
  1692.      0,     0,     0,   774,   776,   475,   476,   477,   478,   479,
  1693.    480,   481,   482,   483,   484,   485,   486,   487,   488,   489,
  1694.    490,   846,     0,     0,     0,     0,     0,     0,     0,     0,
  1695.    519,   519,     0,   519,     0,     0,     0,     0,     0,     0,
  1696.    686,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1697.      0,     0,     0,     0,   936,   937,   774,   776,     0,     0,
  1698.      0,     0,   941,   774,   776,   469,   470,   471,     0,   472,
  1699.    473,   474,   475,   476,   477,   478,   479,   480,   481,   482,
  1700.    483,   484,   485,   486,   487,   488,   489,   490,     0,     0,
  1701.      0,     0,     0,     0,     0,     0,   846,   846,   846,     0,
  1702.      0,     0,  1111,     0,   971,   972,    92,    10,   233,   234,
  1703.    235,     0,   236,    12,   973,     0,   974,   975,   976,   977,
  1704.    978,   979,   980,   981,   982,   983,    13,    14,    15,   237,
  1705.    238,   239,    16,     0,   240,     0,    17,     0,   241,   242,
  1706.    149,   243,    19,   244,   245,     0,     0,   246,   247,   248,
  1707.    249,   250,    21,     0,   984,   349,     0,   985,     0,     0,
  1708.      0,     0,     0,   251,     0,     0,   252,     0,     0,     0,
  1709.      0,     0,   307,   309,   253,   254,   255,     0,     0,     0,
  1710.    428,     0,   256,   257,   258,     0,     0,     0,     0,   259,
  1711.      0,   986,     0,   260,     0,     0,     0,     0,     0,     0,
  1712.      0,     0,     0,     0,  1112,   261,     0,     0,  1031,     0,
  1713.      0,  1031,     0,   422,     0,     0,     0,   936,   937,     0,
  1714.    941,  1261,     0,   971,   972,    92,    10,   233,   234,   235,
  1715.      0,   236,    12,   973,     0,   974,   975,   976,   977,   978,
  1716.    979,   980,   981,   982,   983,    13,    14,    15,   237,   238,
  1717.    239,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  1718.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  1719.    250,    21,     0,   984,   349,     0,   985,     0,     0,     0,
  1720.      0,     0,   251,     0,     0,   252,     0,     0,     0,   422,
  1721.      0,     0,     0,   253,   254,   255,     0,     0,     0,     0,
  1722.      0,   256,   257,   258,     0,     0,     0,     0,   259,     0,
  1723.    986,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  1724.      0,     0,  1107,  1262,   261,     0,     0,     0,     0,     0,
  1725.      0,     0,     0,     0,     0,   562,   563,     0,   565,     0,
  1726.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1727.      0,     0,     0,  1283,     0,   971,   972,    92,    10,   233,
  1728.    234,   235,     0,   236,    12,   973,   422,   974,   975,   976,
  1729.    977,   978,   979,   980,   981,   982,   983,    13,    14,    15,
  1730.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1731.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1732.    248,   249,   250,    21,     0,   984,   349,     0,   985,     0,
  1733.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1734.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1735.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1736.    259,     0,   986,     0,   260,     0,     0,     0,     0,     0,
  1737.      0,     0,     0,     0,     0,  1284,   261,  1283,     0,   971,
  1738.    972,    92,    10,   233,   234,   235,     0,   236,    12,   973,
  1739.      0,   974,   975,   976,   977,   978,   979,   980,   981,   982,
  1740.    983,    13,    14,    15,   237,   238,   239,    16,     0,   240,
  1741.      0,    17,     0,   241,   242,     0,   243,    19,   244,   245,
  1742.      0,     0,   246,   247,   248,   249,   250,    21,     0,   984,
  1743.    349,     0,   985,     0,     0,     0,     0,     0,   251,     0,
  1744.      0,   252,     0,     0,     0,     0,     0,     0,     0,   253,
  1745.    254,   255,     0,     0,     0,     0,     0,   256,   257,   258,
  1746.      0,     0,     0,     0,   259,     0,   986,     0,   260,     0,
  1747.      0,     0,     0,     0,     0,     0,     0,     0,     0,  1289,
  1748.    261,  1283,     0,   971,   972,    92,    10,   233,   234,   235,
  1749.      0,   236,    12,   973,     0,   974,   975,   976,   977,   978,
  1750.    979,   980,   981,   982,   983,    13,    14,    15,   237,   238,
  1751.    239,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  1752.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  1753.    250,    21,     0,   984,   349,     0,   985,     0,     0,     0,
  1754.      0,     0,   251,     0,     0,   252,     0,     0,     0,     0,
  1755.      0,     0,     0,   253,   254,   255,     0,     0,     0,     0,
  1756.      0,   256,   257,   258,     0,     0,     0,     0,   259,     0,
  1757.    986,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  1758.      0,     0,     0,  1328,   261,   970,     0,   971,   972,    92,
  1759.     10,   233,   234,   235,     0,   236,    12,   973,     0,   974,
  1760.    975,   976,   977,   978,   979,   980,   981,   982,   983,    13,
  1761.     14,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  1762.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  1763.    246,   247,   248,   249,   250,    21,     0,   984,   349,     0,
  1764.    985,     0,     0,     0,     0,     0,   251,     0,     0,   252,
  1765.      0,     0,     0,     0,     0,     0,     0,   253,   254,   255,
  1766.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  1767.      0,     0,   259,     0,   986,  1255,   260,   971,   972,    92,
  1768.     10,   233,   234,   235,     0,   236,    12,   973,   261,   974,
  1769.    975,   976,   977,   978,   979,   980,   981,   982,   983,    13,
  1770.     14,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  1771.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  1772.    246,   247,   248,   249,   250,    21,     0,   984,   349,     0,
  1773.    985,     0,     0,     0,     0,     0,   251,     0,     0,   252,
  1774.      0,     0,     0,     0,     0,     0,     0,   253,   254,   255,
  1775.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  1776.      0,     0,   259,     0,   986,  1316,   260,   971,   972,    92,
  1777.     10,   233,   234,   235,     0,   236,    12,   973,   261,   974,
  1778.    975,   976,   977,   978,   979,   980,   981,   982,   983,    13,
  1779.     14,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  1780.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  1781.    246,   247,   248,   249,   250,    21,     0,   984,   349,     0,
  1782.    985,     0,     0,     0,     0,     0,   251,     0,     0,   252,
  1783.      0,     0,     0,     0,     0,     0,     0,   253,   254,   255,
  1784.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  1785.      0,     0,   259,     0,   986,   458,   260,     7,     8,    92,
  1786.     10,   233,   234,   235,   356,   236,    12,     0,   261,     0,
  1787.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1788.      0,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  1789.      0,   241,   242,     0,   243,    19,   244,   245,   513,     0,
  1790.    246,   247,   248,   249,   250,    21,     0,    22,  -239,     0,
  1791.      0,     0,     0,     0,     0,     0,   251,     0,     0,   790,
  1792.      0,     0,     0,     0,     0,     0,     0,   253,   254,   791,
  1793.      0,     0,     0,     0,     0,   256,   257,   258,     0,   516,
  1794.      0,     0,   792,   518,     0,     0,   260,   357,     0,     0,
  1795.      0,     0,     0,     0,     0,     0,     0,   458,   261,     7,
  1796.      8,    92,    10,   233,   234,   235,   356,   236,    12,     0,
  1797.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1798.      0,     0,     0,    15,   237,   238,   239,    16,     0,   240,
  1799.      0,    17,     0,   241,   242,     0,   243,    19,   244,   245,
  1800.    513,     0,   246,   247,   248,   249,   250,    21,     0,    22,
  1801.   -239,     0,     0,     0,     0,     0,     0,     0,   251,     0,
  1802.      0,   850,     0,     0,     0,     0,     0,     0,     0,   253,
  1803.    254,   851,     0,     0,     0,     0,     0,   256,   257,   258,
  1804.      0,   516,     0,     0,   852,   518,     0,     0,   260,   357,
  1805.      0,     0,     0,     0,     0,     0,     0,     0,     0,   355,
  1806.    261,     7,     8,    92,    10,   233,   234,   235,   356,   236,
  1807.     12,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1808.      0,     0,     0,     0,     0,    15,   237,   238,   239,    16,
  1809.      0,   240,     0,    17,     0,   241,   242,     0,   243,    19,
  1810.    244,   245,     0,     0,   246,   247,   248,   249,   250,    21,
  1811.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  1812.    251,     0,     0,   252,     0,     0,     0,     0,     0,     0,
  1813.      0,   253,   254,   255,     0,     0,     0,     0,     0,   256,
  1814.    257,   258,     0,     0,     0,     0,   259,     0,     0,     0,
  1815.    260,   357,     0,     0,     0,     0,     0,     0,     0,     0,
  1816.   -667,   638,   261,     7,     8,    92,    10,   233,   234,   235,
  1817.    356,   236,    12,     0,     0,     0,     0,     0,     0,     0,
  1818.      0,     0,     0,     0,     0,     0,     0,    15,   237,   238,
  1819.    239,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  1820.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  1821.    250,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  1822.      0,     0,   251,     0,     0,   252,     0,     0,     0,     0,
  1823.      0,     0,     0,   253,   254,   255,     0,     0,     0,     0,
  1824.      0,   256,   257,   258,     0,     0,     0,     0,   259,     0,
  1825.      0,     0,   260,   357,     0,     0,     0,     0,     0,     0,
  1826.      0,     0,  -667,   591,   261,   715,   716,     0,    10,   440,
  1827.    234,   235,     0,   236,    12,     0,     0,     0,     0,     0,
  1828.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1829.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1830.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1831.    248,   249,   250,    21,     0,   717,   592,     0,     0,     0,
  1832.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1833.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1834.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1835.    259,   718,     0,   591,   260,   715,   716,     0,    10,   440,
  1836.    234,   235,     0,   236,    12,   830,   261,     0,     0,     0,
  1837.      0,  1047,     0,     0,     0,     0,     0,     0,     0,    15,
  1838.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1839.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1840.    248,   249,   250,    21,     0,   717,   592,     0,     0,     0,
  1841.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1842.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1843.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1844.    259,     0,     0,   591,   260,   715,   716,     0,    10,   440,
  1845.    234,   235,     0,   236,    12,  -386,   261,     0,     0,     0,
  1846.      0,  1047,     0,     0,     0,     0,     0,     0,     0,    15,
  1847.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1848.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1849.    248,   249,   250,    21,     0,   717,   592,     0,     0,     0,
  1850.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1851.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1852.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1853.    259,     0,     0,  1164,   260,     7,     8,    92,    10,   233,
  1854.    234,   235,     0,   236,    12,  1077,   261,     0,     0,     0,
  1855.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1856.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1857.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1858.    248,   249,   250,    21,     0,    22,  1165,     0,  1166,     0,
  1859.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1860.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1861.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1862.    259,     0,     0,   591,   260,   715,   716,     0,    10,   440,
  1863.    234,   235,     0,   236,    12,     0,   261,     0,     0,     0,
  1864.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1865.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  1866.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  1867.    248,   249,   250,    21,     0,   717,   592,     0,     0,     0,
  1868.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  1869.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  1870.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  1871.    259,   718,   197,     0,   260,     8,     0,    10,    11,     0,
  1872.      0,     0,     0,    12,     0,     0,   261,     0,     0,     0,
  1873.      0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  1874.      0,     0,    16,     0,     0,     0,    17,     0,   198,   199,
  1875.      0,     0,     0,     0,     0,   200,     0,     0,     0,     0,
  1876.      0,     0,    21,     0,    93,     0,   201,     0,   202,   203,
  1877.    204,     0,   205,   206,   207,   208,   209,   210,   211,   212,
  1878.    213,   214,   215,   216,   217,   218,   219,   220,   221,   222,
  1879.      0,     0,   223,   224,   225,     0,   458,   226,     7,     8,
  1880.    227,    10,   233,   234,   235,     0,   236,    12,     0,     0,
  1881.      0,     0,     0,     0,     0,   228,     0,     0,     0,     0,
  1882.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1883.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1884.      0,   246,   247,   248,   249,   250,    21,     0,    22,  -239,
  1885.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  1886.    252,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1887.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1888.      0,     0,     0,   259,     0,     0,   591,   260,     7,     8,
  1889.      0,    10,   440,   234,   235,     0,   236,    12,     0,   261,
  1890.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1891.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1892.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1893.      0,   246,   247,   248,   249,   250,    21,     0,    22,   592,
  1894.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  1895.    252,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1896.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1897.      0,     0,     0,   259,     0,     0,   725,   260,     7,     8,
  1898.      0,    10,   440,   234,   235,     0,   236,    12,     0,   261,
  1899.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1900.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1901.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1902.      0,   246,   247,   248,   249,   250,    21,     0,    22,     0,
  1903.      0,     0,     0,     0,     0,  -657,     0,   251,     0,     0,
  1904.    252,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1905.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1906.      0,     0,     0,   259,     0,     0,   458,   260,     7,     8,
  1907.      0,    10,   233,   234,   235,     0,   236,    12,     0,   261,
  1908.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1909.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1910.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1911.      0,   246,   247,   248,   249,   250,    21,     0,    22,  -239,
  1912.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  1913.    895,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1914.    896,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1915.      0,     0,     0,   897,     0,     0,   458,   260,     7,     8,
  1916.      0,    10,   233,   234,   235,     0,   236,    12,     0,   261,
  1917.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1918.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1919.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1920.      0,   246,   247,   248,   249,   250,    21,     0,    22,  -239,
  1921.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  1922.   1183,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1923.   1184,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1924.      0,     0,     0,  1185,     0,     0,  1235,   260,     7,     8,
  1925.      0,    10,   233,   234,   235,     0,   236,    12,     0,   261,
  1926.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1927.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1928.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1929.      0,   246,   247,   248,   249,   250,    21,     0,    22,     0,
  1930.      0,  -139,     0,     0,     0,     0,     0,   251,     0,     0,
  1931.    252,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1932.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1933.      0,     0,     0,   259,     0,     0,   725,   260,     7,     8,
  1934.      0,    10,   440,   234,   235,     0,   236,    12,     0,   261,
  1935.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1936.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  1937.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  1938.      0,   246,   247,   248,   249,   250,    21,     0,    22,     0,
  1939.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  1940.    252,     0,     0,     0,     0,     0,     0,     0,   253,   254,
  1941.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  1942.      0,     0,     0,   259,     0,     0,     0,   260,     0,     0,
  1943.      0,     0,     0,     0,     0,     0,     0,  -657,   804,   261,
  1944.      7,     8,     0,    10,   440,   234,   235,     0,   236,    12,
  1945.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1946.      0,     0,     0,     0,    15,   237,   238,   239,    16,     0,
  1947.    240,     0,    17,     0,   241,   242,     0,   243,    19,   244,
  1948.    245,     0,     0,   246,   247,   248,   249,   250,    21,     0,
  1949.     22,     0,     0,     0,     0,     0,     0,     0,     0,   251,
  1950.      0,     0,   252,     0,     0,     0,     0,     0,     0,     0,
  1951.    253,   254,   255,     0,     0,     0,     0,     0,   256,   257,
  1952.    258,     0,     0,     0,     0,   259,     0,     0,   806,   260,
  1953.      7,     8,     0,    10,   440,   234,   235,     0,   236,    12,
  1954.      0,   261,     0,     0,     0,     0,     0,     0,     0,     0,
  1955.      0,     0,     0,     0,    15,   237,   238,   239,    16,     0,
  1956.    240,     0,    17,     0,   241,   242,     0,   243,    19,   244,
  1957.    245,     0,     0,   246,   247,   248,   249,   250,    21,     0,
  1958.     22,     0,     0,     0,     0,     0,     0,     0,     0,   251,
  1959.      0,     0,   252,     0,     0,     0,     0,     0,     0,     0,
  1960.    253,   254,   255,     0,     0,     0,     0,     0,   256,   257,
  1961.    258,     0,     0,     0,     0,   259,     0,     7,     8,   260,
  1962.     10,   440,   234,   235,     0,   236,    12,     0,     0,     0,
  1963.      0,   261,     0,     0,     0,     0,     0,     0,     0,     0,
  1964.      0,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  1965.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  1966.    246,   247,   248,   249,   250,    21,     0,    22,     0,     0,
  1967.      0,     0,     0,     0,     0,     0,   251,     0,     0,   252,
  1968.      0,     0,     0,     0,     0,     0,     0,   253,   254,   255,
  1969.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  1970.      0,     0,   259,     0,     0,     0,   260,     0,     0,     0,
  1971.      0,     0,     0,     0,     0,     0,     0,     0,   261,   764,
  1972.    971,   972,    92,    10,   233,   234,   235,     0,   236,    12,
  1973.    973,     0,   974,   975,   976,   977,   978,   979,   980,   981,
  1974.    982,   983,    13,    14,    15,   237,   238,   239,    16,     0,
  1975.    240,     0,    17,     0,   241,   242,     0,   243,    19,   244,
  1976.    245,     0,     0,   246,   247,   248,   249,   250,    21,     0,
  1977.    984,   349,     0,   985,     0,     0,     0,     0,     0,   251,
  1978.      0,     0,   252,     0,     0,     0,     0,     0,     0,     0,
  1979.    253,   254,   255,     0,     0,     0,     0,     0,   256,   257,
  1980.    258,     0,     0,     0,     0,   259,     0,   986,     0,   260,
  1981.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1982.   1116,   261,   971,   972,    92,    10,   233,   234,   235,     0,
  1983.    236,    12,   973,     0,   974,   975,   976,   977,   978,   979,
  1984.    980,   981,   982,   983,    13,    14,    15,   237,   238,   239,
  1985.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  1986.     19,   244,   245,     0,     0,   246,   247,   248,   249,   250,
  1987.     21,     0,   984,   349,     0,   985,     0,     0,     0,     0,
  1988.      0,   251,     0,     0,   252,     0,     0,     0,     0,     0,
  1989.      0,     0,   253,   254,   255,     0,     0,     0,     0,     0,
  1990.    256,   257,   258,     0,     0,     0,     0,   259,     0,   986,
  1991.      0,   260,   971,   972,    92,    10,   233,   234,   235,     0,
  1992.    236,    12,   973,   261,   974,   975,   976,   977,   978,   979,
  1993.    980,   981,   982,   983,    13,    14,    15,   237,   238,   239,
  1994.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  1995.     19,   244,   245,     0,     0,   246,   247,   248,   249,   250,
  1996.     21,     0,   984,  1276,     0,   985,     0,     0,     0,     0,
  1997.      0,   251,     0,     0,   252,     0,     0,     0,     0,     0,
  1998.      0,     0,   253,   254,   255,     0,     0,     0,     0,     0,
  1999.    256,   257,   258,     0,     0,     0,     0,   259,     0,   986,
  2000.      0,   260,   971,   972,    92,    10,   233,   234,   235,     0,
  2001.    236,    12,   973,   261,   974,   975,   976,   977,   978,   979,
  2002.    980,   981,   982,   983,    13,    14,    15,   237,   238,   239,
  2003.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  2004.     19,   244,   245,     0,     0,   246,   247,   248,   249,   250,
  2005.     21,     0,   984,     0,     0,   985,     0,     0,     0,     0,
  2006.      0,   251,     0,     0,   252,     0,     0,     0,     0,     0,
  2007.      0,     0,   253,   254,   255,     0,     0,     0,     0,     0,
  2008.    256,   257,   258,     0,     0,     0,     0,   259,     0,   986,
  2009.      0,   260,     7,     8,    92,    10,   233,   234,   235,   356,
  2010.    236,    12,     0,   261,     0,     0,     0,     0,     0,     0,
  2011.      0,     0,     0,     0,     0,     0,    15,   237,   238,   239,
  2012.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  2013.     19,   244,   245,   513,     0,   246,   247,   248,   249,   250,
  2014.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  2015.      0,   251,     0,     0,   790,     0,     0,     0,     0,     0,
  2016.      0,     0,   253,   254,   791,     0,     0,     0,     0,     0,
  2017.    256,   257,   258,     0,   516,     0,     0,   792,   518,     0,
  2018.      0,   260,   357,     7,     8,    92,    10,   233,   234,   235,
  2019.    356,   236,    12,   261,     0,     0,     0,     0,     0,     0,
  2020.      0,     0,     0,     0,     0,     0,     0,    15,   237,   238,
  2021.    239,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  2022.    243,    19,   244,   245,   513,     0,   246,   247,   248,   249,
  2023.    250,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2024.      0,     0,   251,     0,     0,   850,     0,     0,     0,     0,
  2025.      0,     0,     0,   253,   254,   851,     0,     0,     0,     0,
  2026.      0,   256,   257,   258,     0,   516,     0,     0,   852,   518,
  2027.      0,     0,   260,   357,     7,     8,     0,    10,   233,   234,
  2028.    235,     0,   236,    12,   261,     0,     0,     0,     0,     0,
  2029.      0,     0,     0,     0,     0,     0,     0,     0,    15,   237,
  2030.    238,   239,    16,     0,   240,     0,    17,     0,   241,   242,
  2031.      0,   243,    19,   244,   245,   513,     0,   246,   247,   248,
  2032.    249,   250,    21,     0,    22,     0,     0,     0,     0,     0,
  2033.      0,     0,     0,   251,     0,     0,   790,     0,     0,     0,
  2034.      0,     0,     0,     0,   253,   254,   791,     0,     0,     0,
  2035.      0,     0,   256,   257,   258,     0,   516,     0,     0,   792,
  2036.    518,     7,     8,     0,    10,   233,   234,   235,     0,   236,
  2037.     12,     0,     0,     0,     0,   261,     0,     0,     0,     0,
  2038.      0,     0,     0,     0,     0,    15,   237,   238,   239,    16,
  2039.      0,   240,     0,    17,     0,   241,   242,     0,   243,    19,
  2040.    244,   245,   513,     0,   246,   247,   248,   249,   250,    21,
  2041.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2042.    251,     0,     0,   850,     0,     0,     0,     0,     0,     0,
  2043.      0,   253,   254,   851,     0,     0,     0,     0,     0,   256,
  2044.    257,   258,     0,   516,     0,     0,   852,   518,     7,     8,
  2045.      0,    10,   233,   234,   235,     0,   236,    12,     0,     0,
  2046.      0,     0,   261,     0,     0,     0,     0,     0,     0,     0,
  2047.      0,     0,    15,   237,   238,   239,    16,     0,   240,     0,
  2048.     17,     0,   241,   242,     0,   243,    19,   244,   245,     0,
  2049.      0,   246,   247,   248,   249,   250,    21,     0,    22,     0,
  2050.      0,     0,     0,     0,     0,     0,     0,   251,     0,     0,
  2051.    252,     0,     0,     0,     0,   305,     0,     0,   253,   254,
  2052.    255,     0,     0,     0,     0,     0,   256,   257,   258,     0,
  2053.      0,     0,     0,   259,     0,     7,     8,   260,    10,   440,
  2054.    234,   235,     0,   236,    12,     0,     0,     0,     0,   261,
  2055.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  2056.    237,   238,   239,    16,     0,   240,     0,    17,     0,   241,
  2057.    242,     0,   243,    19,   244,   245,     0,     0,   246,   247,
  2058.    248,   249,   250,    21,     0,    22,     0,     0,  1093,     0,
  2059.      0,     0,     0,     0,   251,     0,     0,   252,     0,     0,
  2060.      0,     0,     0,     0,     0,   253,   254,   255,     0,     0,
  2061.      0,     0,     0,   256,   257,   258,     0,     0,     0,     0,
  2062.    259,     0,     7,     8,   260,    10,   233,   234,   235,     0,
  2063.    236,    12,     0,     0,     0,     0,   261,     0,     0,     0,
  2064.      0,     0,     0,     0,     0,     0,    15,   237,   238,   239,
  2065.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  2066.     19,   244,   245,     0,     0,   246,   247,   248,   249,   250,
  2067.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  2068.      0,   251,     0,     0,   252,     0,     0,     0,     0,     0,
  2069.      0,     0,   253,   254,   255,     0,     0,     0,     0,     0,
  2070.    256,   257,   258,     0,     0,     0,     0,   259,     0,     7,
  2071.      8,   260,    10,   440,   234,   235,     0,   236,    12,     0,
  2072.      0,     0,     0,   261,     0,     0,     0,     0,     0,     0,
  2073.      0,     0,     0,    15,   237,   238,   239,    16,     0,   240,
  2074.      0,    17,     0,   241,   242,     0,   243,    19,   244,   245,
  2075.      0,     0,   246,   247,   248,   249,   250,    21,     0,    22,
  2076.    466,     0,     0,     0,     0,     0,     0,     0,   251,     0,
  2077.      0,   252,     0,     0,     0,     0,     0,     0,     0,   253,
  2078.    254,   255,     0,     0,     0,     0,     0,   256,   257,   258,
  2079.      0,     0,     7,     8,   467,    10,   440,   234,   235,     0,
  2080.    236,    12,     0,     0,     0,     0,     0,     0,     0,     0,
  2081.    261,     0,     0,     0,     0,     0,    15,   237,   238,   239,
  2082.     16,     0,   240,     0,    17,     0,   241,   242,     0,   243,
  2083.     19,   244,   245,     0,     0,   246,   247,   248,   249,   250,
  2084.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  2085.      0,   251,     0,     0,   252,     0,     0,     0,     0,     0,
  2086.      0,     0,   253,   254,   255,     0,     0,     0,     0,     0,
  2087.    256,   257,   258,     0,     0,     0,     0,   259,   503,     7,
  2088.      8,     0,    10,   440,   234,   235,     0,   236,    12,     0,
  2089.      0,     0,     0,   261,     0,     0,     0,     0,     0,     0,
  2090.      0,     0,     0,    15,   237,   238,   239,    16,     0,   240,
  2091.      0,    17,     0,   241,   242,     0,   243,    19,   244,   245,
  2092.      0,     0,   246,   247,   248,   249,   250,    21,     0,    22,
  2093.      0,     0,     0,     0,     0,     0,     0,     0,   251,     0,
  2094.      0,   252,     0,     0,     0,     0,     0,     0,     0,   253,
  2095.    254,   255,     0,     0,     0,     0,     0,   256,   257,   258,
  2096.      0,     0,     0,     0,   259,     0,     7,   701,   260,    10,
  2097.    440,   234,   235,     0,   236,    12,     0,     0,     0,     0,
  2098.    261,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2099.     15,   237,   238,   239,    16,     0,   240,     0,    17,     0,
  2100.    241,   242,     0,   243,    19,   244,   245,     0,     0,   246,
  2101.    247,   248,   249,   250,    21,     0,    22,     0,     0,     0,
  2102.      0,     0,     0,     0,     0,   251,     0,     0,   252,     0,
  2103.      0,     0,     0,     0,     0,     0,   253,   254,   255,     0,
  2104.      0,     0,     0,     0,   256,   257,   258,     0,     0,     0,
  2105.      0,   259,     0,     7,     8,   260,    10,   440,   234,   235,
  2106.      0,   236,    12,     0,     0,     0,     0,   261,     0,     0,
  2107.      0,     0,     0,     0,     0,     0,     0,    15,   237,   238,
  2108.    239,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  2109.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  2110.    250,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2111.      0,     0,   251,     0,     0,   895,     0,     0,     0,     0,
  2112.      0,     0,     0,   253,   254,   896,     0,     0,     0,     0,
  2113.      0,   256,   257,   258,     0,     0,     0,     0,   897,     0,
  2114.      7,     8,   260,    10,   440,   234,   235,     0,   236,    12,
  2115.      0,     0,     0,     0,   261,     0,     0,     0,     0,     0,
  2116.      0,     0,     0,     0,    15,   237,   238,   239,    16,     0,
  2117.    240,     0,    17,     0,   241,   242,     0,   243,    19,   244,
  2118.    245,     0,     0,   246,   247,   248,   249,   250,    21,     0,
  2119.     22,     0,     0,     0,     0,     0,     0,     0,     0,   251,
  2120.      0,     0,  1183,     0,     0,     0,     0,     0,     0,     0,
  2121.    253,   254,  1184,     0,     0,     0,     0,     0,   256,   257,
  2122.    258,     0,     0,     0,     0,  1185,     0,  1248,     8,   260,
  2123.     10,   440,   234,   235,     0,   236,    12,     0,     0,     0,
  2124.      0,   261,     0,     0,     0,     0,     0,     0,     0,     0,
  2125.      0,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  2126.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  2127.    246,   247,   248,   249,   250,    21,     0,    22,     0,     0,
  2128.      0,     0,     0,     0,     0,     0,   251,     0,     0,   252,
  2129.      0,     0,     0,     0,     0,     0,     0,   253,   254,   255,
  2130.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  2131.      0,     0,   259,     0,     7,     8,   260,    10,   440,   234,
  2132.    235,     0,   236,    12,     0,     0,     0,     0,   261,     0,
  2133.      0,     0,     0,     0,     0,     0,     0,     0,    15,   237,
  2134.    238,   239,    16,     0,   240,     0,    17,     0,   241,   242,
  2135.      0,   243,    19,   244,   245,     0,     0,   246,   247,   248,
  2136.    249,   250,    21,     0,    22,     0,     0,     0,     0,     0,
  2137.      0,     0,     0,   251,     0,     0,   252,     0,     0,     0,
  2138.      0,     0,     0,     0,   253,   254,   255,     0,     0,     0,
  2139.      0,     0,   256,   257,   258,     0,     0,     7,     8,   259,
  2140.     10,   440,   234,   235,     0,   236,    12,     0,     0,     0,
  2141.      0,     0,     0,     0,     0,   261,     0,     0,     0,     0,
  2142.      0,    15,   237,   238,   239,    16,     0,   240,     0,    17,
  2143.      0,   241,   242,     0,   243,    19,   244,   245,     0,     0,
  2144.    246,   247,   248,   249,   250,    21,     0,    22,     0,     0,
  2145.      0,     0,     0,     0,     0,     0,   251,     0,     0,   895,
  2146.      0,     0,     0,     0,     0,     0,     0,   253,   254,   896,
  2147.      0,     0,     0,     0,     0,   256,   257,   258,     0,     0,
  2148.      7,     8,   897,    10,   233,   234,   235,     0,   236,    12,
  2149.      0,     0,     0,     0,     0,     0,     0,     0,   261,     0,
  2150.      0,     0,     0,     0,    15,   237,   238,   239,    16,     0,
  2151.    240,     0,    17,     0,   241,   242,     0,   243,    19,   244,
  2152.    245,     0,     0,   246,   247,   248,   249,   250,    21,     0,
  2153.     22,     0,     0,     0,     0,     0,     0,     0,     0,   251,
  2154.      0,     0,  1183,     0,     0,     0,     0,     0,     0,     0,
  2155.    253,   254,  1184,     0,     0,     0,     0,     0,   256,   257,
  2156.    258,     0,     0,     7,     8,  1185,    10,   440,   234,   235,
  2157.      0,   236,    12,     0,     0,     0,     0,     0,     0,     0,
  2158.      0,   261,     0,     0,     0,     0,     0,    15,   237,     0,
  2159.      0,    16,     0,   240,     0,    17,     0,   241,   242,     0,
  2160.    243,    19,   244,   245,     0,     0,   246,   247,   248,   249,
  2161.    250,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2162.      0,     0,   251,     0,     0,   252,     0,     0,     0,     0,
  2163.      0,     0,     0,   253,   254,   255,     0,     0,     0,     0,
  2164.      0,   256,   257,   258,     0,     0,     7,     8,   441,    10,
  2165.    440,   234,   235,     0,   236,    12,     0,     0,     0,     0,
  2166.      0,     0,     0,     0,   261,     0,     0,     0,     0,     0,
  2167.     15,   237,     0,     0,    16,     0,   240,     0,    17,     0,
  2168.    241,   242,     0,   243,    19,   244,   245,     0,     0,   246,
  2169.    247,   248,   249,   250,    21,     0,    22,     0,     0,     0,
  2170.      0,     0,     0,     0,     0,   251,     0,     0,   252,     0,
  2171.      0,     0,     0,     0,     0,     0,   253,   254,   255,     0,
  2172.      0,     0,     0,     0,   256,   257,   258,     0,     0,     0,
  2173.      0,   444,     0,     0,     0,     0,     0,     0,     0,     0,
  2174.      0,     0,   546,     0,   469,   470,   471,   261,   472,   473,
  2175.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  2176.    484,   485,   486,   487,   488,   489,   490,   469,   470,   471,
  2177.   1210,   472,   473,   474,   475,   476,   477,   478,   479,   480,
  2178.    481,   482,   483,   484,   485,   486,   487,   488,   489,   490,
  2179.    469,   470,   471,  1259,   472,   473,   474,   475,   476,   477,
  2180.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2181.    488,   489,   490,   469,   470,   471,     0,   472,   473,   474,
  2182.    475,   476,   477,   478,   479,   480,   481,   482,   483,   484,
  2183.    485,   486,   487,   488,   489,   490,   469,   470,   471,     0,
  2184.    472,   473,   474,   475,   476,   477,   478,   479,   480,     0,
  2185.    482,   483,   484,   485,   486,   487,   488,   489,   490,   471,
  2186.      0,   472,   473,   474,   475,   476,   477,   478,   479,   480,
  2187.    481,   482,   483,   484,   485,   486,   487,   488,   489,   490,
  2188.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  2189.    484,   485,   486,   487,   488,   489,   490
  2190. };
  2191.  
  2192. static const short yycheck[] = {     4,
  2193.      4,   118,   279,   137,   419,   349,   300,    12,   131,   132,
  2194.      4,   285,   341,   300,    70,    20,    20,   108,   109,    24,
  2195.     25,    12,    27,   392,   285,   266,    52,   300,    33,    33,
  2196.    137,    87,    20,    71,   132,   130,   391,   137,   753,    44,
  2197.    182,    46,    98,   162,   163,   155,   135,    52,  1161,   820,
  2198.    993,  1189,  1052,     4,    59,     9,    56,    34,    34,     9,
  2199.     44,    52,     9,     0,  1222,    70,    71,  1169,    51,     3,
  2200.      4,    56,    77,    77,  1232,    60,   370,    60,     4,     0,
  2201.     10,   410,    87,   370,     3,     4,    69,    44,   365,    77,
  2202.     95,    96,    45,    98,    20,    36,   101,    97,    44,   104,
  2203.    105,    62,    53,   108,   109,   110,   189,    33,    36,    10,
  2204.     60,    95,    58,  1215,  1252,   120,   120,   122,   123,    53,
  2205.      7,    48,    41,    10,    75,    55,   103,   103,     4,     4,
  2206.     60,    88,   993,   137,    53,   140,   141,   142,   122,  1000,
  2207.   1253,    75,    88,     1,  1302,   102,    12,  1285,   102,   518,
  2208.   1150,    77,   102,    88,    55,   102,    75,    44,     7,    60,
  2209.    302,   166,   103,    93,    83,   126,   443,     4,    55,    44,
  2210.     55,    58,   102,    60,    88,   103,    51,    53,    53,   184,
  2211.    184,   155,   143,    70,     4,    56,    52,     7,   959,   194,
  2212.     65,     4,    93,   300,   120,   189,    54,   158,   287,    75,
  2213.     75,    88,    89,    44,   919,    54,    93,    76,     3,    44,
  2214.     85,    60,   186,    88,    89,   102,    53,     4,   103,    88,
  2215.     89,  1334,  1335,   346,   347,   348,   231,   232,   155,   285,
  2216.     99,    51,   103,    53,   272,   162,   163,   990,    75,   992,
  2217.     53,   107,    51,    92,   344,    65,    56,    88,   346,   347,
  2218.    345,     3,     4,    88,    89,    75,   339,   391,   184,   186,
  2219.     69,   535,    75,   370,     3,     4,    53,   272,   137,    89,
  2220.      4,   276,    44,   278,   279,   280,   395,   396,    69,    56,
  2221.     44,   286,    92,    44,   391,     4,   396,    44,     7,   380,
  2222.    381,   391,    44,   102,   252,   300,   300,   255,    44,    51,
  2223.    258,    53,   286,   230,   423,    10,   264,    56,   663,   314,
  2224.     66,  1172,   317,  1256,    53,   273,    88,   322,   401,    53,
  2225.   1263,   326,   326,    44,    88,   654,   103,    88,    89,    85,
  2226.     60,    88,    51,    51,    53,    55,    88,   460,   326,   439,
  2227.   1055,   102,    88,    89,    56,   339,    65,   103,    55,    56,
  2228.     55,    69,   279,    58,   103,    60,    75,   362,   363,   364,
  2229.    365,   366,    56,     3,     4,   370,   370,    88,  1229,    55,
  2230.    331,   376,   102,   378,  1317,   380,   381,   382,   362,    88,
  2231.    364,   365,   102,   388,    44,   251,    54,   391,    93,   394,
  2232.    259,   103,   397,   387,   150,  1256,   496,    60,   498,   499,
  2233.    326,    41,  1263,     3,     4,   410,    69,   401,    56,   103,
  2234.    517,   416,   417,    53,   419,   419,   102,   524,    51,   424,
  2235.    789,     6,     7,    55,    60,    56,  1287,    12,    88,    89,
  2236.    530,   300,   416,   788,    56,    75,     3,     4,   365,     6,
  2237.    196,    41,   102,    83,   405,   450,   451,   452,   453,    54,
  2238.     35,    51,    56,    53,     3,     4,  1317,   103,    27,    44,
  2239.     60,   422,   500,    44,    55,    65,   102,    54,   395,   396,
  2240.    102,    51,   103,   596,    41,    75,    55,     3,     4,    44,
  2241.     60,   103,    56,    83,   102,   585,    53,   570,    88,    69,
  2242.    448,    70,    41,   419,   823,   500,   423,   502,   596,   103,
  2243.     54,   370,   609,    88,    53,    44,    60,    88,   615,   514,
  2244.    515,   102,   517,   517,   808,    41,    83,    44,    92,   524,
  2245.    524,   808,   391,    88,   798,   644,    75,    53,   284,   663,
  2246.    556,    58,    55,    44,    83,   808,   102,   798,   867,   108,
  2247.    109,   110,     3,     4,     5,     6,     7,    70,   103,    88,
  2248.    555,   556,   308,   794,   102,   424,   663,    83,     3,     4,
  2249.    929,    88,    89,    54,   647,   556,    55,    56,   685,    60,
  2250.     44,   555,   441,   142,    35,   444,   570,    88,    89,     9,
  2251.    449,   450,   451,   452,   453,     3,     4,     5,     6,     7,
  2252.     51,     1,    53,    54,   463,    23,   102,   680,   467,   102,
  2253.    466,    92,   607,   608,   609,   609,    51,    44,    53,    54,
  2254.    615,   615,    92,    23,    88,    25,    26,     3,     4,     3,
  2255.   1035,    58,    32,    55,    56,    51,   631,   632,   555,   634,
  2256.    499,    60,    60,   977,    60,    53,   105,    98,    99,   100,
  2257.     69,     1,    97,    69,    54,    55,    56,   924,    58,   654,
  2258.     60,    88,   388,   647,   788,    41,   756,     4,   663,   663,
  2259.     55,   397,    37,    23,    54,    25,    26,    53,    60,   769,
  2260.     60,   771,    32,     4,    51,    70,    51,   682,     6,     7,
  2261.    436,   788,    92,    60,    12,   792,   680,   692,   693,   694,
  2262.    556,    88,    69,    89,    54,    55,    56,    83,    58,    60,
  2263.     60,   808,    92,   664,    51,   105,    53,    35,   669,   670,
  2264.    925,   926,   673,   928,    88,   992,    55,   644,    65,    58,
  2265.     51,    89,    53,    55,    56,   825,   592,   827,    75,   829,
  2266.     23,    70,    92,    54,    65,    56,    25,    26,   845,    60,
  2267.   1084,  1085,   798,    27,    75,   852,    88,   752,   692,   693,
  2268.    694,    88,   843,   844,  1098,   682,   512,    69,    89,   850,
  2269.    851,    54,    88,    56,    69,    58,    69,    60,   773,    69,
  2270.    775,   527,    25,    26,  1118,  1119,    54,   782,    56,    25,
  2271.     26,   786,    60,   788,   788,   790,   791,   792,   792,     9,
  2272.     78,    79,   103,   798,   663,   878,   879,    55,   881,    55,
  2273.     56,    54,     3,   808,   808,   810,   764,    60,    54,  1334,
  2274.   1335,   380,   381,   382,    60,     3,     4,    55,    56,     3,
  2275.      4,  1165,   102,     7,   108,   109,   110,   102,    54,   102,
  2276.     56,   103,   790,   791,    60,   102,   841,   842,   843,   844,
  2277.    845,   845,    55,    56,   849,   850,   851,   852,   852,    37,
  2278.     38,    55,    56,    41,   236,   237,    54,    41,   142,   102,
  2279.     44,     7,   867,    51,    58,    53,   102,    51,   102,    53,
  2280.   1296,  1297,   877,   102,     4,   880,    58,   882,   882,   884,
  2281.    105,    65,    12,   752,   878,   879,   102,   881,    44,    88,
  2282.     20,    75,   850,   851,    24,    25,   105,    27,    32,    83,
  2283.    105,    85,   105,    33,    88,    89,   102,   581,     4,     5,
  2284.    102,   102,   873,   782,    44,    51,    46,     6,   105,   788,
  2285.    925,   926,    52,   928,    88,    81,    82,    44,    55,    59,
  2286.     86,    87,    88,    89,    58,    31,    58,   895,   896,   808,
  2287.     36,    71,     4,     5,    58,   102,    56,    77,    56,  1226,
  2288.    102,    56,    56,   958,   958,    51,   882,    53,    56,    58,
  2289.     55,   635,   102,  1086,   102,    95,    96,   102,   834,    31,
  2290.     88,   101,   646,   931,    36,   105,   105,    55,   108,   109,
  2291.    110,    60,    88,    89,    55,   990,   991,   992,    55,    51,
  2292.    120,    53,   122,   123,    25,    26,    60,   866,     1,  1004,
  2293.   1005,    32,  1007,    88,    58,   102,   990,    70,   992,   102,
  2294.    140,   141,   142,    70,   102,   884,   102,    70,   102,   102,
  2295.     23,   102,    25,    26,    55,    56,    70,    58,   897,    32,
  2296.   1035,  1035,   958,   102,    60,    60,   166,     5,     6,     7,
  2297.    609,    55,   102,  1337,    12,   911,   615,    60,  1131,  1132,
  2298.   1337,    54,    55,    56,   184,    58,   102,    60,   105,   102,
  2299.   1177,   103,   102,    83,   194,   992,  1189,    35,    89,  1030,
  2300.   1031,   105,   343,    44,     5,     6,     7,   105,   102,   102,
  2301.    102,    12,    34,     4,   103,   102,     7,   105,    58,    92,
  2302.    102,   847,  1183,  1184,   663,   102,   380,   381,   382,  1182,
  2303.    966,   231,   232,  1108,    35,  1205,   102,   102,    58,  1035,
  2304.     88,    88,     4,     5,     6,     7,    88,   983,    10,    88,
  2305.     12,    88,   103,    44,    75,    76,    77,    78,    79,  1252,
  2306.     51,   105,    53,     6,    60,    27,   102,  1131,  1132,    31,
  2307.    102,   815,   272,    35,    65,   102,  1107,   102,   278,   279,
  2308.    280,   105,    88,   259,    75,   285,   286,     3,     4,    51,
  2309.    102,    53,  1285,   102,    85,   103,  1127,    88,    89,   102,
  2310.    300,  1271,   102,  1039,   102,    60,    56,    56,  1183,  1184,
  2311.   1185,     7,    54,    14,   314,  1179,    56,   317,  1182,    58,
  2312.    102,   865,   322,   949,   102,    41,   326,    60,    44,    60,
  2313.    874,    93,    27,  1286,   105,    51,    44,    53,    56,   883,
  2314.     88,   341,  1078,    56,    60,  1338,    58,    88,    58,    65,
  2315.     88,   102,  1227,   105,    15,  1183,  1184,   102,   102,    75,
  2316.   1337,    58,   362,   363,   364,   365,   366,    83,   102,    56,
  2317.    370,   103,    88,  1227,    56,    56,   376,   102,   378,   102,
  2318.    380,   381,   382,    56,    56,   102,     9,    58,   388,    56,
  2319.     56,   102,     3,     4,   394,    88,     7,   397,    56,   375,
  2320.     55,    91,   102,   102,   843,   844,   845,    56,   102,     9,
  2321.    410,   850,   851,   852,   109,   110,   416,   417,   102,   419,
  2322.     58,    56,  1286,   102,   424,    88,   102,  1258,   102,  1226,
  2323.     41,     3,     4,    44,     9,     7,    56,     0,     0,   119,
  2324.     51,     2,    53,   328,   808,   120,  1185,   142,   823,    99,
  2325.    450,   451,   452,   453,    65,   609,   120,  1150,  1160,  1191,
  2326.    130,   615,  1337,  1337,    75,   441,   512,  1203,   444,    41,
  2327.    446,   447,    83,   449,    85,  1019,  1020,    88,    89,    51,
  2328.    463,    53,  1087,     4,   991,   626,     7,  1203,  1032,  1033,
  2329.    592,   467,   803,    65,   688,   471,   867,    33,    33,   654,
  2330.    500,   813,   502,    75,     4,   958,   417,   543,   882,   663,
  2331.    880,    83,   801,    12,   514,   515,    88,   517,   500,   837,
  2332.     20,   497,  1276,    44,   524,  1310,     4,   503,     6,     7,
  2333.     51,  1312,    53,    33,    12,   535,    73,    74,    75,    76,
  2334.     77,    78,    79,   884,    65,    -1,    46,    10,    -1,    27,
  2335.     -1,   370,    -1,    31,    75,   555,   556,    35,    -1,    59,
  2336.     -1,    -1,    25,    26,    85,    -1,    -1,    88,    89,    32,
  2337.     -1,    71,    -1,    51,    -1,    53,    76,    77,    -1,    -1,
  2338.     -1,    44,    -1,    -1,    -1,    -1,  1130,    -1,    88,    89,
  2339.     -1,    -1,    55,    56,    -1,    58,    96,    60,  1337,    99,
  2340.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   607,   608,   609,
  2341.     88,    -1,    -1,    -1,   755,   615,    -1,    -1,    -1,     4,
  2342.    120,     6,     7,   123,    -1,    88,    89,    12,    -1,    92,
  2343.     93,   631,   632,    -1,   634,    -1,    -1,   137,    -1,   102,
  2344.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    -1,
  2345.     35,    -1,  1196,  1197,   654,  1199,  1200,    -1,    -1,    -1,
  2346.     -1,    -1,    -1,   663,    -1,    -1,    51,    -1,    53,  1108,
  2347.     -1,   812,    -1,    -1,     1,    -1,     3,     4,     5,     6,
  2348.      7,    -1,   682,    -1,   184,    12,   381,   382,    -1,   843,
  2349.    844,   845,   692,   693,   694,    -1,   850,   851,   852,    -1,
  2350.     27,    -1,    -1,    -1,    31,    -1,    -1,    -1,    35,    36,
  2351.     -1,    -1,    -1,    -1,    41,    -1,   857,    -1,    -1,    -1,
  2352.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    56,
  2353.     -1,   231,    -1,    60,     4,    -1,     6,     7,    65,    -1,
  2354.    137,    -1,    12,    -1,  1183,  1184,  1185,    -1,    75,    -1,
  2355.     -1,    -1,   752,    -1,    -1,    -1,    83,    -1,    -1,   259,
  2356.     -1,    88,  1306,    -1,    -1,    35,    -1,    -1,    -1,   910,
  2357.    911,    -1,   272,   773,    44,   775,   103,    -1,    -1,    -1,
  2358.    280,    51,   782,    53,   760,    -1,   786,    -1,   788,    -1,
  2359.    790,   791,   792,    -1,    71,    65,    -1,    -1,   798,    76,
  2360.    300,    -1,    -1,    -1,    -1,    75,    -1,    -1,   808,    -1,
  2361.    810,    88,    89,    -1,    -1,    85,   792,    -1,    88,    89,
  2362.     -1,    -1,    99,   823,    -1,   966,   326,    -1,    -1,   524,
  2363.     -1,    -1,    -1,     3,     4,    -1,    -1,    -1,    -1,    -1,
  2364.     -1,   841,   842,   843,   844,   845,    -1,    -1,    -1,   849,
  2365.    850,   851,   852,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2366.    137,     4,    -1,   363,     7,    -1,   366,   867,    -1,    -1,
  2367.    370,    41,    -1,    -1,    -1,    -1,   852,   877,    -1,    -1,
  2368.    880,    51,   882,    53,   884,    -1,    56,    -1,    -1,    -1,
  2369.    866,   391,    -1,    -1,    -1,    65,    -1,    -1,    -1,  1040,
  2370.     -1,    44,    -1,    -1,  1045,    75,    -1,    -1,    51,    -1,
  2371.     53,    -1,    -1,    83,   609,    -1,    -1,   417,    88,   419,
  2372.    615,   897,    65,    -1,   424,   925,   926,    -1,   928,    -1,
  2373.     -1,    -1,    75,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2374.     -1,   441,    85,    -1,   444,    88,    89,   344,    -1,   449,
  2375.    450,   451,   452,   453,  1108,    -1,    -1,    -1,   958,    -1,
  2376.     -1,    -1,     4,   463,     6,     7,    -1,   467,   663,    -1,
  2377.     12,    -1,    -1,    24,    25,    -1,    -1,    -1,    -1,  1120,
  2378.   1121,    -1,   259,    -1,    -1,    27,    -1,    -1,    -1,    31,
  2379.    990,   991,   992,    35,   391,   272,    -1,    -1,    -1,   499,
  2380.    500,    -1,   697,    -1,  1004,  1005,   982,  1007,  1149,    51,
  2381.     -1,    53,    54,    -1,    -1,    -1,    -1,   517,    -1,    -1,
  2382.     71,    -1,    -1,   300,   524,    76,    -1,    -1,    -1,  1183,
  2383.   1184,  1185,    -1,     3,     4,  1035,    -1,    88,    89,    -1,
  2384.     -1,    -1,   439,    -1,    -1,    -1,    88,    -1,    99,    -1,
  2385.      3,     4,    -1,  1194,     7,    -1,    -1,   108,   109,    -1,
  2386.   1201,  1202,    -1,    -1,    -1,  1041,  1042,  1043,  1044,  1210,
  2387.     -1,    41,    -1,    -1,    -1,    -1,    -1,  1053,    -1,    -1,
  2388.     -1,    51,    -1,    53,    -1,    -1,   137,    -1,    41,   140,
  2389.    141,    44,    -1,   370,    -1,    65,   791,   792,    51,   496,
  2390.     53,   498,   499,    -1,    -1,    75,    -1,    -1,  1108,   609,
  2391.     -1,  1087,    65,    83,   391,   615,    -1,    -1,    88,  1095,
  2392.     -1,    -1,    75,    -1,    -1,    -1,    -1,   524,  1269,  1270,
  2393.     83,    -1,    85,   530,    -1,    88,    89,    71,    72,    73,
  2394.     74,    75,    76,    77,    78,    79,    -1,   424,    -1,   844,
  2395.    845,    -1,    -1,    -1,    -1,    -1,   851,   852,    -1,    -1,
  2396.     -1,    -1,    -1,   663,   441,    -1,    -1,   444,    -1,    -1,
  2397.     -1,    -1,   449,   450,   451,   452,   453,    -1,    -1,    -1,
  2398.     -1,    -1,    -1,  1183,  1184,  1185,   463,    -1,   585,    -1,
  2399.    467,    -1,    -1,  1169,     1,  1336,     3,     4,     5,     6,
  2400.      7,   896,   897,    -1,    -1,    12,    -1,    -1,   259,  1185,
  2401.     -1,    -1,    -1,    -1,  1190,  1191,    -1,    -1,   615,    -1,
  2402.     27,   272,   499,   500,    31,    -1,    -1,  1227,    35,    36,
  2403.     -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,    -1,  1215,
  2404.    517,    -1,    -1,    -1,    51,    -1,    53,   524,    -1,   300,
  2405.     -1,    -1,   752,    60,    -1,    -1,   756,    -1,    65,    -1,
  2406.     -1,     1,    -1,     3,     4,     5,     6,     7,    75,    -1,
  2407.     -1,    -1,    12,    -1,    -1,     4,    83,     6,     7,    -1,
  2408.     -1,    88,   782,    12,    -1,    25,    26,    27,   788,    -1,
  2409.     -1,    31,   792,    -1,    -1,    35,   103,    -1,    27,    39,
  2410.    697,    41,    31,    -1,  1280,    45,    35,    -1,   808,    -1,
  2411.    810,    51,    -1,    53,    -1,    -1,    56,    -1,    -1,   370,
  2412.   1296,  1297,    51,    -1,    53,    65,    -1,    -1,    -1,   380,
  2413.    381,    -1,   609,  1309,    -1,    75,   836,  1337,   615,    -1,
  2414.    391,    -1,    -1,    83,    -1,   845,    -1,    -1,    88,    -1,
  2415.     -1,    -1,   852,    -1,    94,    95,    -1,     3,     4,   756,
  2416.     -1,     7,    -1,    -1,    -1,    -1,   866,    -1,    -1,    -1,
  2417.     -1,    -1,   769,   424,   771,    -1,    -1,    -1,    -1,    -1,
  2418.     -1,    -1,   882,    -1,   884,    -1,   663,    -1,    -1,    -1,
  2419.    441,    -1,    -1,   444,    -1,    41,    -1,   897,   449,   450,
  2420.    451,   452,   453,    -1,    -1,    51,    -1,    53,    -1,    -1,
  2421.     -1,    -1,   463,  1108,    -1,    -1,   467,    -1,    -1,    65,
  2422.      1,    -1,     3,     4,     5,     6,     7,    -1,   825,    75,
  2423.    827,    12,   829,    -1,    -1,    -1,    -1,    83,    -1,    69,
  2424.     -1,    -1,    88,    -1,    -1,    -1,    27,    -1,   499,   500,
  2425.     31,    -1,    -1,    -1,    35,    36,    -1,    76,   958,    -1,
  2426.     41,    -1,    -1,   514,   515,    -1,   517,    -1,    -1,    -1,
  2427.     51,    -1,    53,   524,    -1,   752,    -1,    -1,    -1,    60,
  2428.     99,    -1,    -1,    -1,    65,    -1,    -1,   117,    -1,  1184,
  2429.   1185,   991,    -1,   993,    75,    -1,    -1,    -1,    -1,    -1,
  2430.   1000,    -1,    83,    -1,    -1,   782,   136,    88,    -1,    -1,
  2431.     -1,   788,    -1,    -1,    -1,   792,    -1,    -1,   137,    -1,
  2432.     -1,   151,   103,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2433.     -1,   808,    -1,    -1,    -1,  1035,     1,    -1,     3,     4,
  2434.      5,     6,     7,    -1,     3,     4,    -1,    12,     7,    -1,
  2435.     -1,    -1,    -1,    -1,    -1,    -1,   607,   608,   609,    -1,
  2436.     -1,    -1,    27,    -1,   615,    -1,    31,    -1,   845,    -1,
  2437.     35,    36,    -1,    -1,    -1,   852,    41,    -1,    -1,    -1,
  2438.     -1,    -1,    41,    -1,    -1,    44,    51,  1087,    53,   866,
  2439.     -1,    56,    51,    -1,    53,    60,    -1,    -1,     3,     4,
  2440.     65,    -1,    -1,    -1,    -1,    -1,    65,   884,    -1,    -1,
  2441.     75,    -1,   663,    -1,    -1,    -1,    75,    -1,    83,    -1,
  2442.    897,    -1,    -1,    88,    83,    -1,    85,    -1,    -1,    88,
  2443.     89,    -1,     4,     5,     6,     7,    41,    -1,   103,    44,
  2444.     12,   260,    -1,    -1,    -1,    -1,    51,    -1,    53,    -1,
  2445.     -1,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,
  2446.     65,  1161,     1,    35,     3,     4,     5,     6,     7,  1169,
  2447.     75,    -1,  1172,    12,    -1,    -1,    -1,    -1,    83,    51,
  2448.     85,    53,    -1,    88,    89,  1185,    -1,    -1,    27,    -1,
  2449.   1190,  1191,    31,    -1,    -1,    -1,    35,     3,     4,    -1,
  2450.     -1,   752,    41,    -1,    -1,    -1,    45,    -1,    -1,    -1,
  2451.     -1,  1108,    51,    -1,    53,  1215,    -1,    56,    -1,    -1,
  2452.     -1,    -1,  1222,    -1,   343,   344,    65,    -1,    -1,  1229,
  2453.     -1,   782,  1232,    -1,    -1,    41,    75,   788,    -1,   790,
  2454.    791,   792,    -1,    -1,    83,    51,    -1,    53,    -1,    88,
  2455.     56,    -1,    -1,  1253,   384,    94,  1256,   808,    -1,    65,
  2456.    390,    -1,    -1,  1263,    -1,    -1,    -1,    -1,    -1,    75,
  2457.     -1,    -1,   391,    -1,    -1,    -1,    -1,    83,    -1,    -1,
  2458.     -1,    -1,    88,     4,     5,     6,     7,  1287,    -1,    -1,
  2459.     -1,    12,   843,   844,   845,   414,    -1,    -1,    -1,   850,
  2460.    851,   852,  1302,    -1,   434,   435,    27,   437,  1205,    -1,
  2461.     31,    -1,    -1,    -1,    35,   866,    -1,  1317,    -1,    -1,
  2462.    439,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2463.     51,    -1,    53,   884,  1334,  1335,    -1,  1337,     3,     4,
  2464.     -1,    -1,     7,    -1,   463,    -1,   897,   466,    69,    -1,
  2465.    469,   470,    -1,   472,   473,   474,   475,   476,   477,   478,
  2466.    479,   480,   481,   482,   483,   484,   485,   486,   487,   488,
  2467.    489,   490,    -1,    -1,  1271,    -1,    41,   496,    -1,   498,
  2468.    499,    -1,    -1,    -1,    -1,    -1,    51,    -1,    53,    -1,
  2469.    520,   521,  1169,    -1,     4,   525,     6,    -1,    -1,    -1,
  2470.     65,    -1,    12,    -1,    -1,   524,    -1,    -1,  1185,    -1,
  2471.     75,   530,    -1,  1190,  1191,    -1,    -1,    27,    83,    -1,
  2472.     -1,    31,    -1,    88,    -1,    35,   545,   546,    -1,    -1,
  2473.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1215,    -1,
  2474.     -1,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  2475.      3,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2476.     -1,     3,     4,     5,     6,     7,   585,    -1,    -1,    -1,
  2477.     12,   601,   602,   592,    27,    -1,    -1,    -1,    31,    12,
  2478.     -1,   611,    35,    -1,    -1,    27,    -1,   617,    41,    31,
  2479.     -1,    24,    25,    35,    27,    -1,   615,    -1,    51,    41,
  2480.     53,    -1,    -1,    -1,    -1,     4,    -1,   626,    -1,    51,
  2481.     -1,    53,    65,    -1,    56,    -1,    -1,    -1,    -1,    52,
  2482.     -1,    -1,    75,    65,    -1,    24,    25,    -1,    27,    -1,
  2483.     83,   661,    -1,    75,    33,    88,    -1,    -1,    -1,    -1,
  2484.     93,    83,    -1,   662,    -1,    44,    88,    46,    -1,    -1,
  2485.      3,     4,     5,     6,     7,    -1,    -1,    -1,    -1,    12,
  2486.   1337,    -1,    -1,    -1,    -1,    -1,    -1,    66,   101,    -1,
  2487.    103,   104,   105,    -1,    -1,   108,   109,   110,   697,    -1,
  2488.     -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  2489.     -1,    44,    -1,    -1,    -1,    -1,    95,    -1,    51,   718,
  2490.     53,    -1,   101,    -1,   103,    -1,   105,    -1,    -1,   108,
  2491.    109,   110,    65,    -1,    -1,    -1,    -1,    -1,  1169,    -1,
  2492.     -1,   120,    75,   122,   123,    -1,    -1,    -1,   758,   759,
  2493.     83,   761,  1183,  1184,  1185,    88,   755,   756,    -1,  1190,
  2494.   1191,   140,   141,   142,    -1,    -1,    -1,    -1,    -1,    -1,
  2495.    769,   150,   771,    -1,    -1,    -1,    -1,   787,    -1,    -1,
  2496.     -1,   194,    -1,    -1,  1215,    -1,    -1,   166,    -1,    -1,
  2497.     -1,    -1,    -1,    -1,    -1,     3,     4,     5,     6,     7,
  2498.     -1,   800,    -1,    -1,    12,   184,    -1,    -1,    -1,    -1,
  2499.     -1,    -1,    -1,   812,    -1,   194,    -1,    -1,    -1,   232,
  2500.     -1,    -1,    -1,    -1,    -1,    -1,   825,    35,   827,    -1,
  2501.    829,    -1,    -1,    41,    -1,    -1,    44,    -1,   848,     4,
  2502.     -1,     6,     7,    51,    -1,    53,    -1,    12,    -1,    -1,
  2503.    860,   861,   862,    -1,    -1,    -1,    -1,    65,   857,    -1,
  2504.     -1,    -1,    -1,   276,    -1,   278,   279,    75,    -1,    -1,
  2505.     35,    -1,   871,   872,    -1,    83,    -1,    85,    -1,    44,
  2506.     88,    89,    -1,    -1,    -1,    -1,    51,     1,    53,     3,
  2507.      4,     5,     6,     7,    -1,   308,    -1,   276,    12,    -1,
  2508.     65,   314,    -1,    -1,   317,   284,  1337,   286,    -1,   322,
  2509.     75,   910,   911,    27,    -1,   914,    -1,    31,    -1,    -1,
  2510.     85,    35,    -1,    88,    89,    -1,    -1,    41,    -1,   939,
  2511.     -1,    -1,    -1,    -1,    -1,   314,    -1,    51,   317,    53,
  2512.     -1,    -1,    -1,   322,     3,     4,     5,     6,     7,    -1,
  2513.     -1,    65,    -1,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  2514.     -1,    75,    -1,    -1,    -1,    -1,    -1,   966,    27,    83,
  2515.     -1,    -1,    31,    -1,    88,    -1,    35,    -1,    -1,   978,
  2516.     -1,    -1,    41,   362,   363,   364,   365,    -1,    -1,    -1,
  2517.     -1,   370,    51,    -1,    53,    -1,    -1,   376,    -1,   378,
  2518.     -1,   380,   381,   382,    -1,    -1,    65,     3,     4,   388,
  2519.     -1,     7,    -1,  1023,    -1,   394,    75,    -1,   397,    -1,
  2520.     -1,    -1,    -1,   436,    83,    -1,    -1,  1026,    -1,    88,
  2521.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   416,   417,    -1,
  2522.    419,  1040,    -1,     4,    -1,    41,  1045,    -1,  1047,    -1,
  2523.     -1,     4,     5,     6,     7,    51,    -1,    53,  1068,    12,
  2524.     -1,    -1,    -1,    24,    25,    -1,    27,    -1,    -1,    65,
  2525.     -1,    -1,    33,    -1,    27,    -1,    -1,    -1,    31,    75,
  2526.     -1,    -1,    35,    44,    -1,    46,    -1,    83,    -1,   502,
  2527.     -1,    -1,    88,    -1,    -1,    -1,    -1,    -1,    51,   512,
  2528.     53,   514,   515,     3,     4,     5,     6,     7,    -1,  1108,
  2529.     10,    -1,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2530.     -1,  1120,  1121,    -1,    -1,    -1,    -1,    27,    -1,  1128,
  2531.   1129,    31,    -1,   512,    95,    35,    -1,    -1,    -1,    -1,
  2532.    101,    41,    -1,   556,   105,   524,    -1,   108,   109,   110,
  2533.   1149,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,   120,
  2534.     -1,   122,   123,    -1,    -1,    65,     4,     5,     6,     7,
  2535.     -1,  1170,    10,    -1,    12,    75,   555,    -1,    -1,   140,
  2536.    141,   142,    -1,    83,    -1,    -1,    -1,    -1,    88,    27,
  2537.     -1,    -1,    27,    31,    -1,  1194,    -1,    35,    -1,    -1,
  2538.     -1,    -1,  1201,  1202,    -1,   166,  1205,    -1,    -1,    44,
  2539.     -1,  1210,    -1,    51,    -1,    53,     3,     4,     5,     6,
  2540.      7,    -1,    -1,   184,    -1,    12,    -1,    -1,   607,   608,
  2541.    609,    -1,    -1,   194,    -1,    -1,   615,    -1,    -1,    -1,
  2542.     27,    -1,    -1,    -1,    31,    -1,    -1,    -1,    35,    -1,
  2543.     -1,    -1,   631,   632,    41,   634,    -1,    44,    -1,    -1,
  2544.     95,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,   682,
  2545.   1269,  1270,  1271,   108,   109,   110,    -1,    -1,    65,   692,
  2546.    693,   694,    -1,    -1,   663,    -1,    -1,   122,    75,    -1,
  2547.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2548.     -1,    88,    89,    -1,    -1,   140,   141,   142,    -1,    -1,
  2549.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   697,    -1,
  2550.      3,     4,    -1,    -1,   285,   286,    -1,    -1,    -1,    -1,
  2551.     -1,   166,    -1,    -1,    -1,    -1,    -1,  1336,    -1,    -1,
  2552.     -1,    -1,    -1,    -1,    -1,    -1,     3,     4,     5,     6,
  2553.      7,    -1,    -1,   314,    -1,    12,   317,    -1,    41,    -1,
  2554.    773,   322,   775,    -1,    -1,    -1,    -1,    -1,    51,    -1,
  2555.     53,    -1,    -1,   786,    -1,    -1,    -1,    60,    35,    -1,
  2556.    341,    -1,    65,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2557.     -1,    -1,    75,    -1,    51,    -1,    53,   232,    -1,    -1,
  2558.     83,   362,   363,   364,   365,    88,    -1,    -1,    65,   370,
  2559.     -1,   790,   791,   792,    -1,   376,    -1,   378,    75,   380,
  2560.    381,   382,    -1,    -1,    -1,    -1,    83,   388,    85,    -1,
  2561.     -1,    88,    89,   394,    -1,    -1,   397,    -1,    -1,    -1,
  2562.     -1,    -1,    -1,   278,   279,   280,    -1,    -1,    -1,    -1,
  2563.     -1,   286,    -1,    -1,    -1,   416,   417,    -1,   419,    -1,
  2564.     -1,    -1,   841,   842,   843,   844,   845,   880,   847,    -1,
  2565.    849,   850,   851,   852,    -1,    -1,     3,     4,     5,     6,
  2566.      7,    -1,    -1,    -1,    -1,    12,    68,    69,    70,    71,
  2567.     72,    73,    74,    75,    76,    77,    78,    79,   877,    -1,
  2568.     27,   880,    -1,   882,    31,    -1,    -1,    -1,    35,    -1,
  2569.     -1,    -1,   925,   926,    41,   928,   895,   896,   897,    -1,
  2570.     -1,    -1,    -1,    -1,    51,    -1,    53,   362,    -1,   364,
  2571.    365,   366,    -1,    60,    -1,    -1,    -1,    -1,    65,    -1,
  2572.     -1,   376,    -1,   378,    -1,   380,   381,   382,    75,     4,
  2573.      5,     6,     7,   388,    -1,    10,    83,    12,    -1,   394,
  2574.     -1,    88,   397,   524,    -1,    -1,    -1,    -1,    -1,    -1,
  2575.    949,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,   958,
  2576.     35,   416,    -1,    -1,   140,   141,   142,    -1,    -1,    44,
  2577.     -1,    -1,    -1,    -1,   555,    -1,    51,    -1,    53,    -1,
  2578.     -1,    -1,    -1,     3,     4,    -1,    -1,     7,    -1,    -1,
  2579.     65,   990,   991,   992,     3,     4,    -1,    -1,     7,    -1,
  2580.     75,    -1,    -1,    -1,    -1,  1004,  1005,    44,  1007,    -1,
  2581.     85,    -1,    -1,    88,    89,    -1,    -1,    -1,    93,    -1,
  2582.     -1,    41,    -1,    -1,    -1,    -1,   607,   608,   609,    66,
  2583.     -1,    51,    41,    53,   615,    -1,  1035,    -1,    -1,    -1,
  2584.     -1,    -1,    51,    -1,    53,    65,    -1,   502,    85,    -1,
  2585.    631,   632,    -1,   634,    -1,    75,    65,    -1,    95,   514,
  2586.    515,    -1,   517,    83,    -1,    -1,    75,    -1,    88,   524,
  2587.     -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,    -1,    88,
  2588.     -1,    -1,   663,    -1,    -1,   122,    -1,    -1,    -1,    -1,
  2589.     -1,    -1,    -1,     3,     4,    -1,     6,     7,     8,     9,
  2590.    555,    11,    12,   140,   141,   142,    -1,    -1,    -1,  1108,
  2591.     -1,    -1,    -1,   150,    -1,    -1,   697,    27,    28,    29,
  2592.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,   166,
  2593.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  2594.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  2595.     -1,    -1,   607,   608,   609,    -1,    -1,    -1,    -1,   196,
  2596.    615,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2597.     -1,    81,    82,    83,     3,     4,   631,   632,    88,   634,
  2598.     -1,    -1,    92,    -1,  1183,  1184,  1185,    -1,    -1,    -1,
  2599.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  2600.    376,    -1,   378,    -1,   380,   381,   382,    -1,   663,   790,
  2601.    791,   792,    41,    -1,    -1,    -1,    -1,   798,   394,    -1,
  2602.     -1,    -1,    51,    -1,    53,    -1,    -1,   682,  1227,    -1,
  2603.     -1,    -1,    -1,    -1,    -1,    -1,    65,   692,   693,   694,
  2604.    416,    -1,   823,    -1,    -1,    -1,    75,   284,    -1,   286,
  2605.     -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,    -1,    88,
  2606.    841,   842,   843,   844,   845,    -1,    -1,    -1,   849,   850,
  2607.    851,   852,    -1,    -1,    -1,    -1,    -1,     4,    -1,     6,
  2608.      7,    -1,    -1,    -1,    -1,    12,    -1,    -1,    -1,    -1,
  2609.     -1,    -1,    -1,    -1,    -1,    -1,   877,    -1,    -1,   880,
  2610.     27,   882,    -1,    -1,    31,    -1,    -1,    -1,    35,    -1,
  2611.     -1,    -1,    -1,    -1,   895,   896,   897,    44,   773,    -1,
  2612.    775,    -1,    -1,    -1,    51,   362,    53,   364,   365,    -1,
  2613.     -1,   786,    -1,    -1,    -1,   790,   791,   792,    65,   376,
  2614.     -1,   378,    -1,   380,   381,   382,    -1,    -1,    75,    -1,
  2615.     -1,   388,    -1,    -1,   278,   279,   280,   394,    85,    -1,
  2616.    397,    88,    89,    66,    67,    68,    69,    70,    71,    72,
  2617.     73,    74,    75,    76,    77,    78,    79,   958,    -1,   416,
  2618.     -1,    -1,    -1,    -1,    -1,     4,   841,   842,   843,   844,
  2619.    845,    -1,    -1,    -1,   849,   850,   851,   852,    -1,    -1,
  2620.     -1,    -1,    -1,    -1,    -1,    24,    25,    -1,    -1,   990,
  2621.    991,   992,     3,     4,    33,    -1,     7,    -1,    -1,    -1,
  2622.     -1,    -1,   877,  1004,  1005,    -1,  1007,    46,    -1,    -1,
  2623.     -1,   607,   608,   609,    -1,    -1,    -1,    -1,   362,   615,
  2624.    364,   365,   366,     3,     4,    -1,    -1,     7,    -1,    -1,
  2625.     41,    -1,    -1,    -1,  1035,   631,   632,    -1,   634,    -1,
  2626.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2627.    925,   926,    -1,   928,    65,    -1,    -1,    -1,    -1,    -1,
  2628.     -1,    41,   101,    -1,    75,    -1,   105,   663,    -1,    -1,
  2629.    527,    51,    83,    53,    -1,    -1,    -1,    88,    -1,    -1,
  2630.     -1,   120,    -1,    -1,   123,    65,    -1,    -1,    -1,    -1,
  2631.     -1,    -1,    -1,    -1,    -1,    75,    -1,    -1,   555,    -1,
  2632.     -1,   140,   141,    83,    -1,    -1,    -1,  1108,    88,    -1,
  2633.     -1,    -1,    -1,    -1,    -1,   990,    -1,   992,    -1,     3,
  2634.      4,   278,   279,   280,    -1,    -1,    -1,    -1,    -1,  1004,
  2635.   1005,    -1,  1007,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2636.      3,     4,     5,     6,     7,   184,    -1,    -1,    -1,    12,
  2637.    607,   608,   609,    -1,    -1,   194,    -1,    41,   615,    -1,
  2638.     -1,    -1,    -1,    -1,    27,    -1,    -1,    51,    31,    53,
  2639.    514,   515,    35,   517,   631,   632,    -1,   634,    41,    -1,
  2640.    524,    65,  1183,  1184,  1185,    -1,    -1,    -1,    51,    -1,
  2641.     53,    75,    -1,    56,    -1,    -1,    -1,    -1,    -1,    83,
  2642.     -1,    -1,    65,    -1,    88,   362,   663,   364,   365,   366,
  2643.     -1,   555,    75,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2644.     83,    -1,    -1,    -1,    -1,    88,  1227,    -1,    -1,    -1,
  2645.     -1,    -1,    -1,  1108,    -1,    -1,    -1,    10,    -1,    -1,
  2646.     -1,    -1,    -1,    -1,    -1,   841,   842,   843,   844,   845,
  2647.     -1,    -1,    -1,   849,   850,   851,   852,    -1,    -1,    -1,
  2648.     -1,    -1,    -1,   607,   608,   609,    -1,    -1,    -1,    -1,
  2649.     -1,   615,    -1,    -1,    -1,   314,    -1,    -1,   317,    -1,
  2650.     -1,   877,    -1,   322,    57,    58,    59,    60,    61,    62,
  2651.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  2652.     73,    74,    75,    76,    77,    78,    79,    -1,  1183,  1184,
  2653.   1185,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  2654.     76,    77,    78,    79,   363,    -1,    -1,    -1,    -1,    -1,
  2655.     -1,   370,    -1,    -1,    -1,    -1,    -1,   376,   682,   378,
  2656.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2657.     -1,    -1,  1227,    -1,    -1,   394,    -1,   514,   515,    62,
  2658.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  2659.     73,    74,    75,    76,    77,    78,    79,   416,   417,    -1,
  2660.    419,    -1,    -1,    -1,   841,   842,   843,   844,   845,    -1,
  2661.    847,    -1,   849,   850,   851,   852,    -1,    -1,   555,    -1,
  2662.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1004,  1005,
  2663.     -1,  1007,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2664.    877,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   773,
  2665.     -1,   775,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2666.     -1,    -1,   786,    -1,    -1,    -1,   790,   791,   792,    -1,
  2667.    607,   608,    -1,    -1,    57,    58,    59,    -1,    61,    62,
  2668.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  2669.     73,    74,    75,    76,    77,    78,    79,    65,    66,    67,
  2670.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2671.     78,    79,   949,    -1,    -1,    -1,    -1,   841,   842,   843,
  2672.    844,   845,   105,    -1,    -1,   849,   850,   851,   852,    -1,
  2673.     -1,    -1,  1108,    -1,     3,     4,     5,     6,     7,    -1,
  2674.     -1,    10,    -1,    12,    -1,   682,    -1,    -1,    -1,    -1,
  2675.     -1,    -1,    -1,   990,    -1,   992,    -1,    -1,    27,    -1,
  2676.     -1,    -1,    31,    -1,    -1,    -1,    35,  1004,  1005,    -1,
  2677.   1007,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  2678.     -1,    -1,    51,    -1,    53,    -1,    -1,    -1,   607,   608,
  2679.     -1,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,    -1,
  2680.     -1,    -1,    -1,    -1,    -1,    -1,    75,  1183,  1184,  1185,
  2681.     -1,    -1,   631,   632,    83,   634,    85,    -1,    -1,    88,
  2682.     89,    -1,    -1,    -1,    93,    -1,    -1,    -1,    -1,    -1,
  2683.     -1,    -1,    -1,    -1,    -1,    -1,   773,    -1,   775,    -1,
  2684.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   786,
  2685.     -1,    -1,    -1,   790,   791,    64,    65,    66,    67,    68,
  2686.     69,    70,    71,    72,    73,    74,    75,    76,    77,    78,
  2687.     79,  1108,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2688.   1004,  1005,    -1,  1007,    -1,    -1,    -1,    -1,    -1,    -1,
  2689.     32,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2690.     -1,    -1,    -1,    -1,   841,   842,   843,   844,    -1,    -1,
  2691.     -1,    -1,   849,   850,   851,    57,    58,    59,    -1,    61,
  2692.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  2693.     72,    73,    74,    75,    76,    77,    78,    79,    -1,    -1,
  2694.     -1,    -1,    -1,    -1,    -1,    -1,  1183,  1184,  1185,    -1,
  2695.     -1,    -1,     1,    -1,     3,     4,     5,     6,     7,     8,
  2696.      9,    -1,    11,    12,    13,    -1,    15,    16,    17,    18,
  2697.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  2698.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2699.   1227,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2700.     49,    50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,
  2701.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2702.     -1,    -1,   841,   842,    73,    74,    75,    -1,    -1,    -1,
  2703.    849,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2704.     -1,    90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2705.     -1,    -1,    -1,    -1,   103,   104,    -1,    -1,   877,    -1,
  2706.     -1,   880,    -1,   882,    -1,    -1,    -1,  1004,  1005,    -1,
  2707.   1007,     1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2708.     -1,    11,    12,    13,    -1,    15,    16,    17,    18,    19,
  2709.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  2710.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2711.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  2712.     50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,
  2713.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,   958,
  2714.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2715.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  2716.     90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2717.     -1,    -1,   991,   103,   104,    -1,    -1,    -1,    -1,    -1,
  2718.     -1,    -1,    -1,    -1,    -1,  1004,  1005,    -1,  1007,    -1,
  2719.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2720.     -1,    -1,    -1,     1,    -1,     3,     4,     5,     6,     7,
  2721.      8,     9,    -1,    11,    12,    13,  1035,    15,    16,    17,
  2722.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  2723.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2724.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2725.     48,    49,    50,    51,    -1,    53,    54,    -1,    56,    -1,
  2726.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2727.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2728.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2729.     88,    -1,    90,    -1,    92,    -1,    -1,    -1,    -1,    -1,
  2730.     -1,    -1,    -1,    -1,    -1,   103,   104,     1,    -1,     3,
  2731.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2732.     -1,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2733.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2734.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2735.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2736.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2737.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2738.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2739.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,    -1,
  2740.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,
  2741.    104,     1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2742.     -1,    11,    12,    13,    -1,    15,    16,    17,    18,    19,
  2743.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  2744.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2745.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  2746.     50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,
  2747.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  2748.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2749.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  2750.     90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2751.     -1,    -1,    -1,   103,   104,     1,    -1,     3,     4,     5,
  2752.      6,     7,     8,     9,    -1,    11,    12,    13,    -1,    15,
  2753.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2754.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2755.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2756.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2757.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2758.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2759.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2760.     -1,    -1,    88,    -1,    90,     1,    92,     3,     4,     5,
  2761.      6,     7,     8,     9,    -1,    11,    12,    13,   104,    15,
  2762.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2763.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2764.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2765.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2766.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2767.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2768.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2769.     -1,    -1,    88,    -1,    90,     1,    92,     3,     4,     5,
  2770.      6,     7,     8,     9,    -1,    11,    12,    13,   104,    15,
  2771.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2772.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2773.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2774.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2775.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2776.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2777.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2778.     -1,    -1,    88,    -1,    90,     1,    92,     3,     4,     5,
  2779.      6,     7,     8,     9,    10,    11,    12,    -1,   104,    -1,
  2780.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2781.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2782.     -1,    37,    38,    -1,    40,    41,    42,    43,    44,    -1,
  2783.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2784.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2785.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2786.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    85,
  2787.     -1,    -1,    88,    89,    -1,    -1,    92,    93,    -1,    -1,
  2788.     -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,   104,     3,
  2789.      4,     5,     6,     7,     8,     9,    10,    11,    12,    -1,
  2790.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2791.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2792.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2793.     44,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2794.     54,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2795.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2796.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2797.     -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,    93,
  2798.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,
  2799.    104,     3,     4,     5,     6,     7,     8,     9,    10,    11,
  2800.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2801.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2802.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2803.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  2804.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2805.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  2806.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  2807.     82,    83,    -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,
  2808.     92,    93,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2809.    102,     1,   104,     3,     4,     5,     6,     7,     8,     9,
  2810.     10,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2811.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2812.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2813.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  2814.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  2815.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  2816.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2817.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  2818.     -1,    -1,    92,    93,    -1,    -1,    -1,    -1,    -1,    -1,
  2819.     -1,    -1,   102,     1,   104,     3,     4,    -1,     6,     7,
  2820.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2821.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2822.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2823.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2824.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2825.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2826.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2827.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2828.     88,    89,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2829.      8,     9,    -1,    11,    12,   103,   104,    -1,    -1,    -1,
  2830.     -1,    19,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2831.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2832.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2833.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2834.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2835.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2836.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2837.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2838.      8,     9,    -1,    11,    12,   103,   104,    -1,    -1,    -1,
  2839.     -1,    19,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2840.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2841.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2842.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2843.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2844.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2845.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2846.     88,    -1,    -1,     1,    92,     3,     4,     5,     6,     7,
  2847.      8,     9,    -1,    11,    12,   103,   104,    -1,    -1,    -1,
  2848.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2849.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2850.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2851.     48,    49,    50,    51,    -1,    53,    54,    -1,    56,    -1,
  2852.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2853.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2854.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2855.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2856.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2857.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2858.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2859.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2860.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2861.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2862.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2863.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2864.     88,    89,     1,    -1,    92,     4,    -1,     6,     7,    -1,
  2865.     -1,    -1,    -1,    12,    -1,    -1,   104,    -1,    -1,    -1,
  2866.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    -1,
  2867.     -1,    -1,    31,    -1,    -1,    -1,    35,    -1,    37,    38,
  2868.     -1,    -1,    -1,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  2869.     -1,    -1,    51,    -1,    53,    -1,    55,    -1,    57,    58,
  2870.     59,    -1,    61,    62,    63,    64,    65,    66,    67,    68,
  2871.     69,    70,    71,    72,    73,    74,    75,    76,    77,    78,
  2872.     -1,    -1,    81,    82,    83,    -1,     1,    86,     3,     4,
  2873.     89,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  2874.     -1,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  2875.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2876.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2877.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2878.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2879.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2880.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2881.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2882.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2883.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2884.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2885.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2886.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2887.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2888.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2889.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2890.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2891.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2892.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2893.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2894.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2895.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2896.     -1,    -1,    -1,    -1,    -1,    60,    -1,    62,    -1,    -1,
  2897.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2898.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2899.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2900.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2901.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2902.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2903.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2904.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2905.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2906.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2907.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2908.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2909.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2910.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2911.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2912.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2913.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2914.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2915.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2916.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2917.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2918.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2919.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2920.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2921.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2922.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2923.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2924.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2925.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2926.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2927.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,   104,
  2928.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2929.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2930.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2931.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2932.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2933.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2934.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2935.     -1,    -1,    -1,    88,    -1,    -1,    -1,    92,    -1,    -1,
  2936.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   102,     1,   104,
  2937.      3,     4,    -1,     6,     7,     8,     9,    -1,    11,    12,
  2938.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2939.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2940.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2941.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2942.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  2943.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2944.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2945.     83,    -1,    -1,    -1,    -1,    88,    -1,    -1,     1,    92,
  2946.      3,     4,    -1,     6,     7,     8,     9,    -1,    11,    12,
  2947.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2948.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2949.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2950.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2951.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  2952.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2953.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2954.     83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,
  2955.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  2956.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2957.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2958.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2959.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2960.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2961.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2962.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2963.     -1,    -1,    88,    -1,    -1,    -1,    92,    -1,    -1,    -1,
  2964.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,   105,
  2965.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2966.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2967.     23,    24,    25,    26,    27,    28,    29,    30,    31,    -1,
  2968.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2969.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2970.     53,    54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,
  2971.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2972.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2973.     83,    -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,
  2974.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2975.    103,   104,     3,     4,     5,     6,     7,     8,     9,    -1,
  2976.     11,    12,    13,    -1,    15,    16,    17,    18,    19,    20,
  2977.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2978.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2979.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2980.     51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,    -1,
  2981.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  2982.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2983.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  2984.     -1,    92,     3,     4,     5,     6,     7,     8,     9,    -1,
  2985.     11,    12,    13,   104,    15,    16,    17,    18,    19,    20,
  2986.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2987.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2988.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2989.     51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,    -1,
  2990.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  2991.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2992.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  2993.     -1,    92,     3,     4,     5,     6,     7,     8,     9,    -1,
  2994.     11,    12,    13,   104,    15,    16,    17,    18,    19,    20,
  2995.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2996.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2997.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2998.     51,    -1,    53,    -1,    -1,    56,    -1,    -1,    -1,    -1,
  2999.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  3000.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  3001.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  3002.     -1,    92,     3,     4,     5,     6,     7,     8,     9,    10,
  3003.     11,    12,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  3004.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  3005.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  3006.     41,    42,    43,    44,    -1,    46,    47,    48,    49,    50,
  3007.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3008.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  3009.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  3010.     81,    82,    83,    -1,    85,    -1,    -1,    88,    89,    -1,
  3011.     -1,    92,    93,     3,     4,     5,     6,     7,     8,     9,
  3012.     10,    11,    12,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  3013.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3014.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3015.     40,    41,    42,    43,    44,    -1,    46,    47,    48,    49,
  3016.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3017.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3018.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3019.     -1,    81,    82,    83,    -1,    85,    -1,    -1,    88,    89,
  3020.     -1,    -1,    92,    93,     3,     4,    -1,     6,     7,     8,
  3021.      9,    -1,    11,    12,   104,    -1,    -1,    -1,    -1,    -1,
  3022.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3023.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3024.     -1,    40,    41,    42,    43,    44,    -1,    46,    47,    48,
  3025.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3026.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3027.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3028.     -1,    -1,    81,    82,    83,    -1,    85,    -1,    -1,    88,
  3029.     89,     3,     4,    -1,     6,     7,     8,     9,    -1,    11,
  3030.     12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3031.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3032.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3033.     42,    43,    44,    -1,    46,    47,    48,    49,    50,    51,
  3034.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3035.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3036.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3037.     82,    83,    -1,    85,    -1,    -1,    88,    89,     3,     4,
  3038.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  3039.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3040.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  3041.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  3042.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  3043.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  3044.     65,    -1,    -1,    -1,    -1,    70,    -1,    -1,    73,    74,
  3045.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  3046.     -1,    -1,    -1,    88,    -1,     3,     4,    92,     6,     7,
  3047.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,
  3048.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  3049.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  3050.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  3051.     48,    49,    50,    51,    -1,    53,    -1,    -1,    56,    -1,
  3052.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  3053.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  3054.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  3055.     88,    -1,     3,     4,    92,     6,     7,     8,     9,    -1,
  3056.     11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,
  3057.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  3058.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  3059.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  3060.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3061.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  3062.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  3063.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,
  3064.      4,    92,     6,     7,     8,     9,    -1,    11,    12,    -1,
  3065.     -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  3066.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  3067.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  3068.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  3069.     54,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  3070.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  3071.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  3072.     -1,    -1,     3,     4,    88,     6,     7,     8,     9,    -1,
  3073.     11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3074.    104,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  3075.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  3076.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  3077.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3078.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  3079.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  3080.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    89,     3,
  3081.      4,    -1,     6,     7,     8,     9,    -1,    11,    12,    -1,
  3082.     -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  3083.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  3084.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  3085.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  3086.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  3087.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  3088.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  3089.     -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,     6,
  3090.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3091.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3092.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  3093.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  3094.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  3095.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  3096.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  3097.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  3098.     -1,    88,    -1,     3,     4,    92,     6,     7,     8,     9,
  3099.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  3100.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3101.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3102.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3103.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3104.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3105.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3106.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  3107.      3,     4,    92,     6,     7,     8,     9,    -1,    11,    12,
  3108.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3109.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3110.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3111.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3112.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  3113.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3114.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  3115.     83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,
  3116.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3117.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3118.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  3119.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3120.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3121.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3122.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3123.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3124.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  3125.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  3126.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3127.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3128.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3129.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3130.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3131.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3132.     -1,    -1,    81,    82,    83,    -1,    -1,     3,     4,    88,
  3133.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3134.     -1,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3135.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  3136.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3137.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3138.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3139.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3140.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3141.      3,     4,    88,     6,     7,     8,     9,    -1,    11,    12,
  3142.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,    -1,
  3143.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3144.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3145.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3146.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  3147.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3148.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  3149.     83,    -1,    -1,     3,     4,    88,     6,     7,     8,     9,
  3150.     -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3151.     -1,   104,    -1,    -1,    -1,    -1,    -1,    27,    28,    -1,
  3152.     -1,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3153.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3154.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3155.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3156.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3157.     -1,    81,    82,    83,    -1,    -1,     3,     4,    88,     6,
  3158.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3159.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3160.     27,    28,    -1,    -1,    31,    -1,    33,    -1,    35,    -1,
  3161.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  3162.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  3163.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  3164.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  3165.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  3166.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3167.     -1,    -1,    55,    -1,    57,    58,    59,   104,    61,    62,
  3168.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  3169.     73,    74,    75,    76,    77,    78,    79,    57,    58,    59,
  3170.     60,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3171.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3172.     57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
  3173.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  3174.     77,    78,    79,    57,    58,    59,    -1,    61,    62,    63,
  3175.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3176.     74,    75,    76,    77,    78,    79,    57,    58,    59,    -1,
  3177.     61,    62,    63,    64,    65,    66,    67,    68,    69,    -1,
  3178.     71,    72,    73,    74,    75,    76,    77,    78,    79,    59,
  3179.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3180.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3181.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  3182.     73,    74,    75,    76,    77,    78,    79
  3183. };
  3184. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  3185. #line 3 "/usr/local/lib/bison.simple"
  3186.  
  3187. /* Skeleton output parser for bison,
  3188.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  3189.  
  3190.    This program is free software; you can redistribute it and/or modify
  3191.    it under the terms of the GNU General Public License as published by
  3192.    the Free Software Foundation; either version 1, or (at your option)
  3193.    any later version.
  3194.  
  3195.    This program is distributed in the hope that it will be useful,
  3196.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  3197.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3198.    GNU General Public License for more details.
  3199.  
  3200.    You should have received a copy of the GNU General Public License
  3201.    along with this program; if not, write to the Free Software
  3202.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  3203.  
  3204.  
  3205. #ifndef alloca
  3206. #ifdef __GNUC__
  3207. #define alloca __builtin_alloca
  3208. #else /* not GNU C.  */
  3209. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  3210. #include <alloca.h>
  3211. #else /* not sparc */
  3212. #if defined (MSDOS) && !defined (__TURBOC__)
  3213. #include <malloc.h>
  3214. #else /* not MSDOS, or __TURBOC__ */
  3215. #if defined(_AIX)
  3216. #include <malloc.h>
  3217.  #pragma alloca
  3218. #else /* not MSDOS, __TURBOC__, or _AIX */
  3219. #ifdef __hpux
  3220. #ifdef __cplusplus
  3221. extern "C" {
  3222. void *alloca (unsigned int);
  3223. };
  3224. #else /* not __cplusplus */
  3225. void *alloca ();
  3226. #endif /* not __cplusplus */
  3227. #endif /* __hpux */
  3228. #endif /* not _AIX */
  3229. #endif /* not MSDOS, or __TURBOC__ */
  3230. #endif /* not sparc.  */
  3231. #endif /* not GNU C.  */
  3232. #endif /* alloca not defined.  */
  3233.  
  3234. /* This is the parser code that is written into each bison parser
  3235.   when the %semantic_parser declaration is not specified in the grammar.
  3236.   It was written by Richard Stallman by simplifying the hairy parser
  3237.   used when %semantic_parser is specified.  */
  3238.  
  3239. /* Note: there must be only one dollar sign in this file.
  3240.    It is replaced by the list of actions, each action
  3241.    as one case of the switch.  */
  3242.  
  3243. #define yyerrok        (yyerrstatus = 0)
  3244. #define yyclearin    (yychar = YYEMPTY)
  3245. #define YYEMPTY        -2
  3246. #define YYEOF        0
  3247. #define YYACCEPT    return(0)
  3248. #define YYABORT     return(1)
  3249. #define YYERROR        goto yyerrlab1
  3250. /* Like YYERROR except do call yyerror.
  3251.    This remains here temporarily to ease the
  3252.    transition to the new meaning of YYERROR, for GCC.
  3253.    Once GCC version 2 has supplanted version 1, this can go.  */
  3254. #define YYFAIL        goto yyerrlab
  3255. #define YYRECOVERING()  (!!yyerrstatus)
  3256. #define YYBACKUP(token, value) \
  3257. do                                \
  3258.   if (yychar == YYEMPTY && yylen == 1)                \
  3259.     { yychar = (token), yylval = (value);            \
  3260.       yychar1 = YYTRANSLATE (yychar);                \
  3261.       YYPOPSTACK;                        \
  3262.       goto yybackup;                        \
  3263.     }                                \
  3264.   else                                \
  3265.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  3266. while (0)
  3267.  
  3268. #define YYTERROR    1
  3269. #define YYERRCODE    256
  3270.  
  3271. #ifndef YYPURE
  3272. #define YYLEX        yylex()
  3273. #endif
  3274.  
  3275. #ifdef YYPURE
  3276. #ifdef YYLSP_NEEDED
  3277. #define YYLEX        yylex(&yylval, &yylloc)
  3278. #else
  3279. #define YYLEX        yylex(&yylval)
  3280. #endif
  3281. #endif
  3282.  
  3283. /* If nonreentrant, generate the variables here */
  3284.  
  3285. #ifndef YYPURE
  3286.  
  3287. int    yychar;            /*  the lookahead symbol        */
  3288. YYSTYPE    yylval;            /*  the semantic value of the        */
  3289.                 /*  lookahead symbol            */
  3290.  
  3291. #ifdef YYLSP_NEEDED
  3292. YYLTYPE yylloc;            /*  location data for the lookahead    */
  3293.                 /*  symbol                */
  3294. #endif
  3295.  
  3296. int yynerrs;            /*  number of parse errors so far       */
  3297. #endif  /* not YYPURE */
  3298.  
  3299. #if YYDEBUG != 0
  3300. int yydebug;            /*  nonzero means print parse trace    */
  3301. /* Since this is uninitialized, it does not stop multiple parsers
  3302.    from coexisting.  */
  3303. #endif
  3304.  
  3305. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  3306.  
  3307. #ifndef    YYINITDEPTH
  3308. #define YYINITDEPTH 200
  3309. #endif
  3310.  
  3311. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  3312.     (effective only if the built-in stack extension method is used).  */
  3313.  
  3314. #if YYMAXDEPTH == 0
  3315. #undef YYMAXDEPTH
  3316. #endif
  3317.  
  3318. #ifndef YYMAXDEPTH
  3319. #define YYMAXDEPTH 10000
  3320. #endif
  3321.  
  3322. /* Prevent warning if -Wstrict-prototypes.  */
  3323. #ifdef __GNUC__
  3324. int yyparse (void);
  3325. #endif
  3326.  
  3327. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  3328. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  3329. #else                /* not GNU C or C++ */
  3330. #ifndef __cplusplus
  3331.  
  3332. /* This is the most reliable way to avoid incompatibilities
  3333.    in available built-in functions on various systems.  */
  3334. static void
  3335. __yy_bcopy (from, to, count)
  3336.      char *from;
  3337.      char *to;
  3338.      int count;
  3339. {
  3340.   register char *f = from;
  3341.   register char *t = to;
  3342.   register int i = count;
  3343.  
  3344.   while (i-- > 0)
  3345.     *t++ = *f++;
  3346. }
  3347.  
  3348. #else /* __cplusplus */
  3349.  
  3350. /* This is the most reliable way to avoid incompatibilities
  3351.    in available built-in functions on various systems.  */
  3352. static void
  3353. __yy_bcopy (char *from, char *to, int count)
  3354. {
  3355.   register char *f = from;
  3356.   register char *t = to;
  3357.   register int i = count;
  3358.  
  3359.   while (i-- > 0)
  3360.     *t++ = *f++;
  3361. }
  3362.  
  3363. #endif
  3364. #endif
  3365.  
  3366. #line 184 "/usr/local/lib/bison.simple"
  3367.  
  3368. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  3369.    into yyparse.  The argument should have type void *.
  3370.    It should actually point to an object.
  3371.    Grammar actions can access the variable by casting it
  3372.    to the proper pointer type.  */
  3373.  
  3374. #ifdef YYPARSE_PARAM
  3375. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  3376. #else
  3377. #define YYPARSE_PARAM
  3378. #define YYPARSE_PARAM_DECL
  3379. #endif
  3380.  
  3381. int
  3382. yyparse(YYPARSE_PARAM)
  3383.      YYPARSE_PARAM_DECL
  3384. {
  3385.   register int yystate;
  3386.   register int yyn;
  3387.   register short *yyssp;
  3388.   register YYSTYPE *yyvsp;
  3389.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  3390.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  3391.  
  3392.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  3393.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  3394.  
  3395.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  3396.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  3397.  
  3398. #ifdef YYLSP_NEEDED
  3399.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  3400.   YYLTYPE *yyls = yylsa;
  3401.   YYLTYPE *yylsp;
  3402.  
  3403. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  3404. #else
  3405. #define YYPOPSTACK   (yyvsp--, yyssp--)
  3406. #endif
  3407.  
  3408.   int yystacksize = YYINITDEPTH;
  3409.  
  3410. #ifdef YYPURE
  3411.   int yychar;
  3412.   YYSTYPE yylval;
  3413.   int yynerrs;
  3414. #ifdef YYLSP_NEEDED
  3415.   YYLTYPE yylloc;
  3416. #endif
  3417. #endif
  3418.  
  3419.   YYSTYPE yyval;        /*  the variable used to return        */
  3420.                 /*  semantic values from the action    */
  3421.                 /*  routines                */
  3422.  
  3423.   int yylen;
  3424.  
  3425. #if YYDEBUG != 0
  3426.   if (yydebug)
  3427.     fprintf(stderr, "Starting parse\n");
  3428. #endif
  3429.  
  3430.   yystate = 0;
  3431.   yyerrstatus = 0;
  3432.   yynerrs = 0;
  3433.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  3434.  
  3435.   /* Initialize stack pointers.
  3436.      Waste one element of value and location stack
  3437.      so that they stay on the same level as the state stack.
  3438.      The wasted elements are never initialized.  */
  3439.  
  3440.   yyssp = yyss - 1;
  3441.   yyvsp = yyvs;
  3442. #ifdef YYLSP_NEEDED
  3443.   yylsp = yyls;
  3444. #endif
  3445.  
  3446. /* Push a new state, which is found in  yystate  .  */
  3447. /* In all cases, when you get here, the value and location stacks
  3448.    have just been pushed. so pushing a state here evens the stacks.  */
  3449. yynewstate:
  3450.  
  3451.   *++yyssp = yystate;
  3452.  
  3453.   if (yyssp >= yyss + yystacksize - 1)
  3454.     {
  3455.       /* Give user a chance to reallocate the stack */
  3456.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  3457.       YYSTYPE *yyvs1 = yyvs;
  3458.       short *yyss1 = yyss;
  3459. #ifdef YYLSP_NEEDED
  3460.       YYLTYPE *yyls1 = yyls;
  3461. #endif
  3462.  
  3463.       /* Get the current used size of the three stacks, in elements.  */
  3464.       int size = yyssp - yyss + 1;
  3465.  
  3466. #ifdef yyoverflow
  3467.       /* Each stack pointer address is followed by the size of
  3468.      the data in use in that stack, in bytes.  */
  3469. #ifdef YYLSP_NEEDED
  3470.       /* This used to be a conditional around just the two extra args,
  3471.      but that might be undefined if yyoverflow is a macro.  */
  3472.       yyoverflow("parser stack overflow",
  3473.          &yyss1, size * sizeof (*yyssp),
  3474.          &yyvs1, size * sizeof (*yyvsp),
  3475.          &yyls1, size * sizeof (*yylsp),
  3476.          &yystacksize);
  3477. #else
  3478.       yyoverflow("parser stack overflow",
  3479.          &yyss1, size * sizeof (*yyssp),
  3480.          &yyvs1, size * sizeof (*yyvsp),
  3481.          &yystacksize);
  3482. #endif
  3483.  
  3484.       yyss = yyss1; yyvs = yyvs1;
  3485. #ifdef YYLSP_NEEDED
  3486.       yyls = yyls1;
  3487. #endif
  3488. #else /* no yyoverflow */
  3489.       /* Extend the stack our own way.  */
  3490.       if (yystacksize >= YYMAXDEPTH)
  3491.     {
  3492.       yyerror("parser stack overflow");
  3493.       return 2;
  3494.     }
  3495.       yystacksize *= 2;
  3496.       if (yystacksize > YYMAXDEPTH)
  3497.     yystacksize = YYMAXDEPTH;
  3498.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  3499.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  3500.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  3501.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  3502. #ifdef YYLSP_NEEDED
  3503.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  3504.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  3505. #endif
  3506. #endif /* no yyoverflow */
  3507.  
  3508.       yyssp = yyss + size - 1;
  3509.       yyvsp = yyvs + size - 1;
  3510. #ifdef YYLSP_NEEDED
  3511.       yylsp = yyls + size - 1;
  3512. #endif
  3513.  
  3514. #if YYDEBUG != 0
  3515.       if (yydebug)
  3516.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  3517. #endif
  3518.  
  3519.       if (yyssp >= yyss + yystacksize - 1)
  3520.     YYABORT;
  3521.     }
  3522.  
  3523. #if YYDEBUG != 0
  3524.   if (yydebug)
  3525.     fprintf(stderr, "Entering state %d\n", yystate);
  3526. #endif
  3527.  
  3528.   goto yybackup;
  3529.  yybackup:
  3530.  
  3531. /* Do appropriate processing given the current state.  */
  3532. /* Read a lookahead token if we need one and don't already have one.  */
  3533. /* yyresume: */
  3534.  
  3535.   /* First try to decide what to do without reference to lookahead token.  */
  3536.  
  3537.   yyn = yypact[yystate];
  3538.   if (yyn == YYFLAG)
  3539.     goto yydefault;
  3540.  
  3541.   /* Not known => get a lookahead token if don't already have one.  */
  3542.  
  3543.   /* yychar is either YYEMPTY or YYEOF
  3544.      or a valid token in external form.  */
  3545.  
  3546.   if (yychar == YYEMPTY)
  3547.     {
  3548. #if YYDEBUG != 0
  3549.       if (yydebug)
  3550.     fprintf(stderr, "Reading a token: ");
  3551. #endif
  3552.       yychar = YYLEX;
  3553.     }
  3554.  
  3555.   /* Convert token to internal form (in yychar1) for indexing tables with */
  3556.  
  3557.   if (yychar <= 0)        /* This means end of input. */
  3558.     {
  3559.       yychar1 = 0;
  3560.       yychar = YYEOF;        /* Don't call YYLEX any more */
  3561.  
  3562. #if YYDEBUG != 0
  3563.       if (yydebug)
  3564.     fprintf(stderr, "Now at end of input.\n");
  3565. #endif
  3566.     }
  3567.   else
  3568.     {
  3569.       yychar1 = YYTRANSLATE(yychar);
  3570.  
  3571. #if YYDEBUG != 0
  3572.       if (yydebug)
  3573.     {
  3574.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  3575.       /* Give the individual parser a way to print the precise meaning
  3576.          of a token, for further debugging info.  */
  3577. #ifdef YYPRINT
  3578.       YYPRINT (stderr, yychar, yylval);
  3579. #endif
  3580.       fprintf (stderr, ")\n");
  3581.     }
  3582. #endif
  3583.     }
  3584.  
  3585.   yyn += yychar1;
  3586.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  3587.     goto yydefault;
  3588.  
  3589.   yyn = yytable[yyn];
  3590.  
  3591.   /* yyn is what to do for this token type in this state.
  3592.      Negative => reduce, -yyn is rule number.
  3593.      Positive => shift, yyn is new state.
  3594.        New state is final state => don't bother to shift,
  3595.        just return success.
  3596.      0, or most negative number => error.  */
  3597.  
  3598.   if (yyn < 0)
  3599.     {
  3600.       if (yyn == YYFLAG)
  3601.     goto yyerrlab;
  3602.       yyn = -yyn;
  3603.       goto yyreduce;
  3604.     }
  3605.   else if (yyn == 0)
  3606.     goto yyerrlab;
  3607.  
  3608.   if (yyn == YYFINAL)
  3609.     YYACCEPT;
  3610.  
  3611.   /* Shift the lookahead token.  */
  3612.  
  3613. #if YYDEBUG != 0
  3614.   if (yydebug)
  3615.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  3616. #endif
  3617.  
  3618.   /* Discard the token being shifted unless it is eof.  */
  3619.   if (yychar != YYEOF)
  3620.     yychar = YYEMPTY;
  3621.  
  3622.   *++yyvsp = yylval;
  3623. #ifdef YYLSP_NEEDED
  3624.   *++yylsp = yylloc;
  3625. #endif
  3626.  
  3627.   /* count tokens shifted since error; after three, turn off error status.  */
  3628.   if (yyerrstatus) yyerrstatus--;
  3629.  
  3630.   yystate = yyn;
  3631.   goto yynewstate;
  3632.  
  3633. /* Do the default action for the current state.  */
  3634. yydefault:
  3635.  
  3636.   yyn = yydefact[yystate];
  3637.   if (yyn == 0)
  3638.     goto yyerrlab;
  3639.  
  3640. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  3641. yyreduce:
  3642.   yylen = yyr2[yyn];
  3643.   if (yylen > 0)
  3644.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  3645.  
  3646. #if YYDEBUG != 0
  3647.   if (yydebug)
  3648.     {
  3649.       int i;
  3650.  
  3651.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  3652.            yyn, yyrline[yyn]);
  3653.  
  3654.       /* Print the symbols being reduced, and their result.  */
  3655.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  3656.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  3657.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  3658.     }
  3659. #endif
  3660.  
  3661.  
  3662.   switch (yyn) {
  3663.  
  3664. case 2:
  3665. #line 294 "parse.y"
  3666. {
  3667.           /* In case there were missing closebraces,
  3668.              get us back to the global binding level.  */
  3669.           while (! global_bindings_p ())
  3670.             poplevel (0, 0, 0);
  3671.           finish_file ();
  3672.         ;
  3673.     break;}
  3674. case 3:
  3675. #line 308 "parse.y"
  3676. { yyval.ttype = NULL_TREE; ;
  3677.     break;}
  3678. case 4:
  3679. #line 309 "parse.y"
  3680. { yyval.ttype = NULL_TREE; ;
  3681.     break;}
  3682. case 5:
  3683. #line 311 "parse.y"
  3684. { yyval.ttype = NULL_TREE; ;
  3685.     break;}
  3686. case 6:
  3687. #line 315 "parse.y"
  3688. { have_extern_spec = 1;
  3689.           used_extern_spec = 0;
  3690.           yyval.ttype = NULL_TREE; ;
  3691.     break;}
  3692. case 7:
  3693. #line 320 "parse.y"
  3694. { have_extern_spec = 0; ;
  3695.     break;}
  3696. case 10:
  3697. #line 329 "parse.y"
  3698. { if (pending_lang_change) do_pending_lang_change(); ;
  3699.     break;}
  3700. case 11:
  3701. #line 331 "parse.y"
  3702. { if (! global_bindings_p () && ! pseudo_global_level_p())
  3703.           pop_everything (); ;
  3704.     break;}
  3705. case 12:
  3706. #line 337 "parse.y"
  3707. { if (pending_inlines) do_pending_inlines (); ;
  3708.     break;}
  3709. case 13:
  3710. #line 339 "parse.y"
  3711. { if (pending_inlines) do_pending_inlines (); ;
  3712.     break;}
  3713. case 14:
  3714. #line 341 "parse.y"
  3715. { if (pending_inlines) do_pending_inlines (); ;
  3716.     break;}
  3717. case 16:
  3718. #line 344 "parse.y"
  3719. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  3720.           assemble_asm (yyvsp[-2].ttype); ;
  3721.     break;}
  3722. case 17:
  3723. #line 347 "parse.y"
  3724. { pop_lang_context (); ;
  3725.     break;}
  3726. case 18:
  3727. #line 349 "parse.y"
  3728. { pop_lang_context (); ;
  3729.     break;}
  3730. case 19:
  3731. #line 351 "parse.y"
  3732. { if (pending_inlines) do_pending_inlines ();
  3733.           pop_lang_context (); ;
  3734.     break;}
  3735. case 20:
  3736. #line 354 "parse.y"
  3737. { if (pending_inlines) do_pending_inlines ();
  3738.           pop_lang_context (); ;
  3739.     break;}
  3740. case 21:
  3741. #line 360 "parse.y"
  3742. { push_lang_context (yyvsp[0].ttype); ;
  3743.     break;}
  3744. case 22:
  3745. #line 365 "parse.y"
  3746. { begin_template_parm_list (); ;
  3747.     break;}
  3748. case 23:
  3749. #line 367 "parse.y"
  3750. { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
  3751.     break;}
  3752. case 24:
  3753. #line 372 "parse.y"
  3754. { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
  3755.     break;}
  3756. case 25:
  3757. #line 374 "parse.y"
  3758. { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3759.     break;}
  3760. case 26:
  3761. #line 379 "parse.y"
  3762.           yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
  3763.          ttpa:
  3764.           if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
  3765.             sorry ("signature as template type parameter");
  3766.           else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
  3767.             pedwarn ("template type parameters must use the keyword `class'");
  3768.         ;
  3769.     break;}
  3770. case 27:
  3771. #line 388 "parse.y"
  3772. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
  3773.     break;}
  3774. case 28:
  3775. #line 400 "parse.y"
  3776. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  3777.     break;}
  3778. case 29:
  3779. #line 402 "parse.y"
  3780. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  3781.     break;}
  3782. case 31:
  3783. #line 408 "parse.y"
  3784. { warning ("use of `overload' is an anachronism"); ;
  3785.     break;}
  3786. case 32:
  3787. #line 412 "parse.y"
  3788. { declare_overloaded (yyvsp[0].ttype); ;
  3789.     break;}
  3790. case 33:
  3791. #line 414 "parse.y"
  3792. { declare_overloaded (yyvsp[0].ttype); ;
  3793.     break;}
  3794. case 34:
  3795. #line 421 "parse.y"
  3796. { yychar = '{'; goto template1; ;
  3797.     break;}
  3798. case 36:
  3799. #line 424 "parse.y"
  3800. { yychar = '{'; goto template1; ;
  3801.     break;}
  3802. case 38:
  3803. #line 427 "parse.y"
  3804. { yychar = ':'; goto template1; ;
  3805.     break;}
  3806. case 40:
  3807. #line 430 "parse.y"
  3808. {
  3809.           yychar = ':';
  3810.         template1:
  3811.           if (current_aggr == exception_type_node)
  3812.             error ("template type must define an aggregate or union");
  3813.           else if (current_aggr == signature_type_node)
  3814.             sorry ("template type defining a signature");
  3815.           /* Maybe pedantic warning for union?
  3816.              How about an enum? :-)  */
  3817.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
  3818.           reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3819.           yychar = YYEMPTY;
  3820.         ;
  3821.     break;}
  3822. case 42:
  3823. #line 445 "parse.y"
  3824. {
  3825.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3826.           /* declare $2 as template name with $1 parm list */
  3827.         ;
  3828.     break;}
  3829. case 43:
  3830. #line 450 "parse.y"
  3831. {
  3832.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3833.           /* declare $2 as template name with $1 parm list */
  3834.         ;
  3835.     break;}
  3836. case 44:
  3837. #line 457 "parse.y"
  3838. {
  3839.           tree d;
  3840.           int momentary;
  3841.           int def = (yyvsp[0].itype != ';');
  3842.           momentary = suspend_momentary ();
  3843.           d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
  3844.                   yyvsp[-3].ttype);
  3845.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3846.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3847.           end_template_decl (yyvsp[-5].ttype, d, 0, def);
  3848.           if (def)
  3849.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
  3850.           resume_momentary (momentary);
  3851.         ;
  3852.     break;}
  3853. case 45:
  3854. #line 474 "parse.y"
  3855. {
  3856.           tree d;
  3857.           int momentary;
  3858.           int def = (yyvsp[0].itype != ';');
  3859.  
  3860.           current_declspecs = yyvsp[-5].ttype;
  3861.           momentary = suspend_momentary ();
  3862.           d = start_decl (yyvsp[-4].ttype, current_declspecs,
  3863.                   0, yyvsp[-3].ttype);
  3864.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3865.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3866.           end_template_decl (yyvsp[-6].ttype, d, 0, def);
  3867.           if (def)
  3868.             {
  3869.               reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
  3870.               yychar = YYEMPTY;
  3871.             }
  3872.           note_list_got_semicolon (yyvsp[-5].ttype);
  3873.           resume_momentary (momentary);
  3874.         ;
  3875.     break;}
  3876. case 46:
  3877. #line 495 "parse.y"
  3878. {
  3879.           int def = (yyvsp[0].itype != ';');
  3880.           tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
  3881.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3882.           end_template_decl (yyvsp[-3].ttype, d, 0, def);
  3883.           if (def)
  3884.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
  3885.         ;
  3886.     break;}
  3887. case 47:
  3888. #line 504 "parse.y"
  3889. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3890.     break;}
  3891. case 48:
  3892. #line 505 "parse.y"
  3893. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3894.     break;}
  3895. case 49:
  3896. #line 508 "parse.y"
  3897. { yyval.itype = '{'; ;
  3898.     break;}
  3899. case 50:
  3900. #line 509 "parse.y"
  3901. { yyval.itype = ':'; ;
  3902.     break;}
  3903. case 51:
  3904. #line 510 "parse.y"
  3905. { yyval.itype = ';'; ;
  3906.     break;}
  3907. case 52:
  3908. #line 511 "parse.y"
  3909. { yyval.itype = '='; ;
  3910.     break;}
  3911. case 53:
  3912. #line 512 "parse.y"
  3913. { yyval.itype = RETURN; ;
  3914.     break;}
  3915. case 54:
  3916. #line 517 "parse.y"
  3917. {;
  3918.     break;}
  3919. case 55:
  3920. #line 519 "parse.y"
  3921. {;
  3922.     break;}
  3923. case 56:
  3924. #line 522 "parse.y"
  3925. { tree d;
  3926.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3927.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3928.         ;
  3929.     break;}
  3930. case 57:
  3931. #line 527 "parse.y"
  3932. {
  3933.           note_list_got_semicolon (yyval.ttype);
  3934.         ;
  3935.     break;}
  3936. case 58:
  3937. #line 532 "parse.y"
  3938. { tree d;
  3939.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3940.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3941.           note_list_got_semicolon (yyval.ttype);
  3942.         ;
  3943.     break;}
  3944. case 59:
  3945. #line 538 "parse.y"
  3946. { pedwarn ("empty declaration"); ;
  3947.     break;}
  3948. case 61:
  3949. #line 541 "parse.y"
  3950. {
  3951.         tree t = yyval.ttype;
  3952.         shadow_tag (t);
  3953.         if (TREE_CODE (t) == TREE_LIST
  3954.         && TREE_PURPOSE (t) == NULL_TREE)
  3955.           {
  3956.         t = TREE_VALUE (t);
  3957.         if (IS_AGGR_TYPE (t)
  3958.             && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
  3959.           {
  3960.             if (CLASSTYPE_USE_TEMPLATE (t) == 0)
  3961.               SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
  3962.             else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
  3963.               error ("override declaration for already-expanded template");
  3964.           }
  3965.           }
  3966.         note_list_got_semicolon (yyval.ttype);
  3967.       ;
  3968.     break;}
  3969. case 65:
  3970. #line 566 "parse.y"
  3971. {
  3972.           finish_function (lineno, 1);
  3973.           /* finish_function performs these three statements:
  3974.  
  3975.              expand_end_bindings (getdecls (), 1, 0);
  3976.              poplevel (1, 1, 0);
  3977.  
  3978.              expand_end_bindings (0, 0, 0);
  3979.              poplevel (0, 0, 1);
  3980.              */
  3981.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3982.         ;
  3983.     break;}
  3984. case 66:
  3985. #line 579 "parse.y"
  3986. {
  3987.           finish_function (lineno, 1);
  3988.           /* finish_function performs these three statements:
  3989.  
  3990.              expand_end_bindings (getdecls (), 1, 0);
  3991.              poplevel (1, 1, 0);
  3992.  
  3993.              expand_end_bindings (0, 0, 0);
  3994.              poplevel (0, 0, 1);
  3995.              */
  3996.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3997.         ;
  3998.     break;}
  3999. case 67:
  4000. #line 592 "parse.y"
  4001. { finish_function (lineno, 0);
  4002.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  4003.     break;}
  4004. case 68:
  4005. #line 595 "parse.y"
  4006. { finish_function (lineno, 0);
  4007.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  4008.     break;}
  4009. case 69:
  4010. #line 598 "parse.y"
  4011. { finish_function (lineno, 0);
  4012.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  4013.     break;}
  4014. case 70:
  4015. #line 601 "parse.y"
  4016. {;
  4017.     break;}
  4018. case 71:
  4019. #line 603 "parse.y"
  4020. {;
  4021.     break;}
  4022. case 72:
  4023. #line 605 "parse.y"
  4024. {;
  4025.     break;}
  4026. case 73:
  4027. #line 610 "parse.y"
  4028. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4029.             YYERROR1;
  4030.           reinit_parse_for_function ();
  4031.           yyval.ttype = NULL_TREE; ;
  4032.     break;}
  4033. case 74:
  4034. #line 615 "parse.y"
  4035. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4036.             YYERROR1;
  4037.           reinit_parse_for_function ();
  4038.           yyval.ttype = NULL_TREE; ;
  4039.     break;}
  4040. case 75:
  4041. #line 620 "parse.y"
  4042. { if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
  4043.             YYERROR1;
  4044.           reinit_parse_for_function ();
  4045.           yyval.ttype = NULL_TREE; ;
  4046.     break;}
  4047. case 76:
  4048. #line 625 "parse.y"
  4049. { start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
  4050.           reinit_parse_for_function (); ;
  4051.     break;}
  4052. case 77:
  4053. #line 633 "parse.y"
  4054. {
  4055.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-5].ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
  4056.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-5].ttype), yyval.ttype, yyvsp[0].ttype);
  4057.          rest_of_mdef:
  4058.           if (! yyval.ttype)
  4059.             YYERROR1;
  4060.           if (yychar == YYEMPTY)
  4061.             yychar = YYLEX;
  4062.           reinit_parse_for_method (yychar, yyval.ttype); ;
  4063.     break;}
  4064. case 78:
  4065. #line 643 "parse.y"
  4066. {
  4067.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-3].ttype),
  4068.                      empty_parms (), yyvsp[-1].ttype);
  4069.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-3].ttype), yyval.ttype, yyvsp[0].ttype);
  4070.           goto rest_of_mdef;
  4071.         ;
  4072.     break;}
  4073. case 79:
  4074. #line 650 "parse.y"
  4075. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4076.     break;}
  4077. case 80:
  4078. #line 652 "parse.y"
  4079. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4080.     break;}
  4081. case 81:
  4082. #line 654 "parse.y"
  4083. { yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4084.     break;}
  4085. case 82:
  4086. #line 658 "parse.y"
  4087. {
  4088.           if (! current_function_parms_stored)
  4089.             store_parm_decls ();
  4090.           yyval.ttype = yyvsp[0].ttype;
  4091.         ;
  4092.     break;}
  4093. case 83:
  4094. #line 666 "parse.y"
  4095. { store_return_init (yyval.ttype, NULL_TREE); ;
  4096.     break;}
  4097. case 84:
  4098. #line 668 "parse.y"
  4099. { store_return_init (yyval.ttype, yyvsp[0].ttype); ;
  4100.     break;}
  4101. case 85:
  4102. #line 670 "parse.y"
  4103. { store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
  4104.     break;}
  4105. case 86:
  4106. #line 672 "parse.y"
  4107. { store_return_init (yyval.ttype, NULL_TREE); ;
  4108.     break;}
  4109. case 87:
  4110. #line 677 "parse.y"
  4111. {
  4112.           if (yyvsp[0].itype == 0)
  4113.             error ("no base initializers given following ':'");
  4114.           setup_vtbl_ptr ();
  4115.           /* Always keep the BLOCK node associated with the outermost
  4116.              pair of curley braces of a function.  These are needed
  4117.              for correct operation of dwarfout.c.  */
  4118.           keep_next_level ();
  4119.         ;
  4120.     break;}
  4121. case 88:
  4122. #line 690 "parse.y"
  4123. {
  4124.           if (! current_function_parms_stored)
  4125.             store_parm_decls ();
  4126.  
  4127.           /* Flag that we are processing base and member initializers.  */
  4128.           current_vtable_decl = error_mark_node;
  4129.  
  4130.           if (DECL_CONSTRUCTOR_P (current_function_decl))
  4131.             {
  4132.               /* Make a contour for the initializer list.  */
  4133.               pushlevel (0);
  4134.               clear_last_expr ();
  4135.               expand_start_bindings (0);
  4136.             }
  4137.           else if (current_class_type == NULL_TREE)
  4138.             error ("base initializers not allowed for non-member functions");
  4139.           else if (! DECL_CONSTRUCTOR_P (current_function_decl))
  4140.             error ("only constructors take base initializers");
  4141.         ;
  4142.     break;}
  4143. case 89:
  4144. #line 713 "parse.y"
  4145. { yyval.itype = 0; ;
  4146.     break;}
  4147. case 90:
  4148. #line 715 "parse.y"
  4149. { yyval.itype = 1; ;
  4150.     break;}
  4151. case 93:
  4152. #line 721 "parse.y"
  4153. {
  4154.           if (current_class_name && !flag_traditional)
  4155.             pedwarn ("anachronistic old style base class initializer");
  4156.           expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
  4157.         ;
  4158.     break;}
  4159. case 94:
  4160. #line 727 "parse.y"
  4161. {
  4162.           if (current_class_name && !flag_traditional)
  4163.             pedwarn ("anachronistic old style base class initializer");
  4164.           expand_member_init (C_C_D, NULL_TREE, void_type_node);
  4165.         ;
  4166.     break;}
  4167. case 95:
  4168. #line 733 "parse.y"
  4169. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4170.     break;}
  4171. case 96:
  4172. #line 735 "parse.y"
  4173. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4174.     break;}
  4175. case 97:
  4176. #line 737 "parse.y"
  4177. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4178.     break;}
  4179. case 98:
  4180. #line 739 "parse.y"
  4181. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4182.     break;}
  4183. case 99:
  4184. #line 742 "parse.y"
  4185. {
  4186.           do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  4187.         ;
  4188.     break;}
  4189. case 100:
  4190. #line 746 "parse.y"
  4191. {
  4192.           do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
  4193.         ;
  4194.     break;}
  4195. case 109:
  4196. #line 770 "parse.y"
  4197. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
  4198.     break;}
  4199. case 110:
  4200. #line 772 "parse.y"
  4201. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ;
  4202.     break;}
  4203. case 111:
  4204. #line 774 "parse.y"
  4205. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
  4206.     break;}
  4207. case 112:
  4208. #line 776 "parse.y"
  4209. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); ;
  4210.     break;}
  4211. case 113:
  4212. #line 781 "parse.y"
  4213. { if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
  4214.     break;}
  4215. case 114:
  4216. #line 786 "parse.y"
  4217. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4218.     break;}
  4219. case 115:
  4220. #line 788 "parse.y"
  4221. { yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
  4222.     break;}
  4223. case 116:
  4224. #line 790 "parse.y"
  4225. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4226.     break;}
  4227. case 117:
  4228. #line 795 "parse.y"
  4229. { yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
  4230.     break;}
  4231. case 118:
  4232. #line 800 "parse.y"
  4233. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4234.     break;}
  4235. case 119:
  4236. #line 802 "parse.y"
  4237. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4238.     break;}
  4239. case 120:
  4240. #line 807 "parse.y"
  4241. { yyval.ttype = groktypename (yyval.ttype); ;
  4242.     break;}
  4243. case 122:
  4244. #line 813 "parse.y"
  4245. {
  4246.           tree t, decl, tmpl;
  4247.  
  4248.           tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
  4249.           t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
  4250.           set_current_level_tags_transparency (1);
  4251.           my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
  4252.                       || TREE_CODE (t) == UNION_TYPE, 257);
  4253.           yyval.ttype = t;
  4254.  
  4255.           /* Now, put a copy of the decl in global scope, to avoid
  4256.              recursive expansion.  */
  4257.           decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
  4258.           if (!decl)
  4259.             decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
  4260.           /* Now, put a copy of the decl in global scope, to avoid
  4261.              recursive expansion.  */
  4262.                   if (decl)
  4263.                     {
  4264.               /* Need to copy it to clear the chain pointer,
  4265.              and need to get it into permanent storage.  */
  4266.                       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
  4267.               push_obstacks (&permanent_obstack, &permanent_obstack);
  4268.                       decl = copy_node (decl);
  4269.               if (DECL_LANG_SPECIFIC (decl))
  4270.             copy_lang_decl (decl);
  4271.               pop_obstacks ();
  4272.               pushdecl_top_level (decl);
  4273.             }
  4274.           /* Kludge; see instantiate_class_template.  */
  4275.           TYPE_BEING_DEFINED (t) = 0;
  4276.         ;
  4277.     break;}
  4278. case 123:
  4279. #line 846 "parse.y"
  4280. {
  4281.           tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
  4282.  
  4283.           pop_obstacks ();
  4284.           end_template_instantiation (yyvsp[-5].ttype);
  4285.  
  4286.                   /* Now go after the methods & class data.  */
  4287.                   instantiate_member_templates (yyvsp[-5].ttype);
  4288.  
  4289.           pop_tinst_level();
  4290.  
  4291.           CLASSTYPE_GOT_SEMICOLON (t) = 1;
  4292.         ;
  4293.     break;}
  4294. case 124:
  4295. #line 863 "parse.y"
  4296. { yyval.ttype = NULL_TREE; ;
  4297.     break;}
  4298. case 125:
  4299. #line 865 "parse.y"
  4300. { yyval.ttype = yyvsp[0].ttype; ;
  4301.     break;}
  4302. case 126:
  4303. #line 870 "parse.y"
  4304. { yyval.ttype = NULL_TREE; /* never used from here... */;
  4305.     break;}
  4306. case 127:
  4307. #line 872 "parse.y"
  4308. { yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
  4309.     break;}
  4310. case 128:
  4311. #line 876 "parse.y"
  4312. { yyval.code = NEGATE_EXPR; ;
  4313.     break;}
  4314. case 129:
  4315. #line 878 "parse.y"
  4316. { yyval.code = CONVERT_EXPR; ;
  4317.     break;}
  4318. case 130:
  4319. #line 880 "parse.y"
  4320. { yyval.code = PREINCREMENT_EXPR; ;
  4321.     break;}
  4322. case 131:
  4323. #line 882 "parse.y"
  4324. { yyval.code = PREDECREMENT_EXPR; ;
  4325.     break;}
  4326. case 132:
  4327. #line 884 "parse.y"
  4328. { yyval.code = TRUTH_NOT_EXPR; ;
  4329.     break;}
  4330. case 133:
  4331. #line 888 "parse.y"
  4332. { yyval.ttype = build_x_compound_expr (yyval.ttype); ;
  4333.     break;}
  4334. case 135:
  4335. #line 894 "parse.y"
  4336. { error ("ANSI C++ forbids an empty condition for `%s'",
  4337.              cond_stmt_keyword);
  4338.           yyval.ttype = integer_zero_node; ;
  4339.     break;}
  4340. case 136:
  4341. #line 898 "parse.y"
  4342. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4343.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4344.     break;}
  4345. case 137:
  4346. #line 904 "parse.y"
  4347. { error ("ANSI C++ forbids an empty condition for `%s'",
  4348.              cond_stmt_keyword);
  4349.           yyval.ttype = integer_zero_node; ;
  4350.     break;}
  4351. case 138:
  4352. #line 908 "parse.y"
  4353. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4354.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4355.     break;}
  4356. case 139:
  4357. #line 914 "parse.y"
  4358. { yyval.ttype = NULL_TREE; ;
  4359.     break;}
  4360. case 140:
  4361. #line 916 "parse.y"
  4362. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4363.                    bool_truthvalue_conversion (yyval.ttype)); ;
  4364.     break;}
  4365. case 141:
  4366. #line 919 "parse.y"
  4367. { yyval.ttype = NULL_TREE; ;
  4368.     break;}
  4369. case 142:
  4370. #line 924 "parse.y"
  4371. { {
  4372.           tree d;
  4373.           for (d = getdecls (); d; d = TREE_CHAIN (d))
  4374.             if (TREE_CODE (d) == TYPE_DECL) {
  4375.               tree s = TREE_TYPE (d);
  4376.               if (TREE_CODE (s) == RECORD_TYPE)
  4377.             cp_error ("definition of class `%T' in condition", s);
  4378.               else if (TREE_CODE (s) == ENUMERAL_TYPE)
  4379.             cp_error ("definition of enum `%T' in condition", s);
  4380.             }
  4381.           }
  4382.           current_declspecs = yyvsp[-5].ttype;
  4383.           yyvsp[0].itype = suspend_momentary ();
  4384.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  4385.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  4386.         ;
  4387.     break;}
  4388. case 143:
  4389. #line 941 "parse.y"
  4390.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0);
  4391.           resume_momentary (yyvsp[-2].itype);
  4392.           yyval.ttype = yyvsp[-1].ttype; 
  4393.           if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
  4394.             cp_error ("definition of array `%#D' in condition", yyval.ttype); 
  4395.         ;
  4396.     break;}
  4397. case 145:
  4398. #line 953 "parse.y"
  4399. { finish_stmt (); ;
  4400.     break;}
  4401. case 146:
  4402. #line 955 "parse.y"
  4403. { finish_stmt (); ;
  4404.     break;}
  4405. case 147:
  4406. #line 957 "parse.y"
  4407. { finish_stmt (); ;
  4408.     break;}
  4409. case 149:
  4410. #line 964 "parse.y"
  4411. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4412.                           build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4413.     break;}
  4414. case 150:
  4415. #line 967 "parse.y"
  4416. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4417.                           build_tree_list (NULL_TREE, error_mark_node)); ;
  4418.     break;}
  4419. case 151:
  4420. #line 970 "parse.y"
  4421. { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4422.     break;}
  4423. case 152:
  4424. #line 972 "parse.y"
  4425. { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
  4426.     break;}
  4427. case 153:
  4428. #line 977 "parse.y"
  4429. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4430.     break;}
  4431. case 155:
  4432. #line 983 "parse.y"
  4433. {
  4434. #if 0
  4435.           if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
  4436.             yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
  4437. #endif
  4438.         ;
  4439.     break;}
  4440. case 156:
  4441. #line 991 "parse.y"
  4442. { yyvsp[0].itype = pedantic;
  4443.           pedantic = 0; ;
  4444.     break;}
  4445. case 157:
  4446. #line 994 "parse.y"
  4447. { yyval.ttype = yyvsp[0].ttype;
  4448.           pedantic = yyvsp[-2].itype; ;
  4449.     break;}
  4450. case 158:
  4451. #line 997 "parse.y"
  4452. { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  4453.     break;}
  4454. case 159:
  4455. #line 999 "parse.y"
  4456. { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
  4457.     break;}
  4458. case 160:
  4459. #line 1001 "parse.y"
  4460. { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4461.     break;}
  4462. case 161:
  4463. #line 1003 "parse.y"
  4464. { yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
  4465.           if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
  4466.             TREE_NEGATED_INT (yyval.ttype) = 1;
  4467.           overflow_warning (yyval.ttype);
  4468.         ;
  4469.     break;}
  4470. case 162:
  4471. #line 1010 "parse.y"
  4472. { tree label = lookup_label (yyvsp[0].ttype);
  4473.           if (label == NULL_TREE)
  4474.             yyval.ttype = null_pointer_node;
  4475.           else
  4476.             {
  4477.               TREE_USED (label) = 1;
  4478.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  4479.               TREE_CONSTANT (yyval.ttype) = 1;
  4480.             }
  4481.         ;
  4482.     break;}
  4483. case 163:
  4484. #line 1021 "parse.y"
  4485. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  4486.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  4487.             error ("sizeof applied to a bit-field");
  4488.           /* ANSI says arrays and functions are converted inside comma.
  4489.              But we can't really convert them in build_compound_expr
  4490.              because that would break commas in lvalues.
  4491.              So do the conversion here if operand was a comma.  */
  4492.           if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
  4493.               && (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
  4494.               || TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
  4495.             yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
  4496.           else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
  4497.                 {
  4498.               tree t = TREE_VALUE (yyvsp[0].ttype);
  4499.               if (t != NULL_TREE
  4500.               && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  4501.             pedwarn ("ANSI C++ forbids using sizeof() on a function");
  4502.             }
  4503.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  4504.     break;}
  4505. case 164:
  4506. #line 1041 "parse.y"
  4507. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  4508.     break;}
  4509. case 165:
  4510. #line 1043 "parse.y"
  4511. { yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
  4512.     break;}
  4513. case 166:
  4514. #line 1045 "parse.y"
  4515. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  4516.     break;}
  4517. case 167:
  4518. #line 1050 "parse.y"
  4519. { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
  4520.     break;}
  4521. case 168:
  4522. #line 1052 "parse.y"
  4523. { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
  4524.     break;}
  4525. case 169:
  4526. #line 1054 "parse.y"
  4527. { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
  4528.     break;}
  4529. case 170:
  4530. #line 1056 "parse.y"
  4531. { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
  4532.     break;}
  4533. case 171:
  4534. #line 1058 "parse.y"
  4535. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
  4536.                   NULL_TREE, yyvsp[-3].itype); ;
  4537.     break;}
  4538. case 172:
  4539. #line 1061 "parse.y"
  4540. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
  4541.     break;}
  4542. case 173:
  4543. #line 1063 "parse.y"
  4544. { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
  4545.     break;}
  4546. case 174:
  4547. #line 1065 "parse.y"
  4548. { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
  4549.     break;}
  4550. case 175:
  4551. #line 1068 "parse.y"
  4552. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
  4553.     break;}
  4554. case 176:
  4555. #line 1070 "parse.y"
  4556. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
  4557.           if (yychar == YYEMPTY)
  4558.             yychar = YYLEX; ;
  4559.     break;}
  4560. case 177:
  4561. #line 1074 "parse.y"
  4562. { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
  4563.           if (yychar == YYEMPTY)
  4564.             yychar = YYLEX; ;
  4565.     break;}
  4566. case 178:
  4567. #line 1081 "parse.y"
  4568. { yyval.ttype = yyvsp[-1].ttype; ;
  4569.     break;}
  4570. case 179:
  4571. #line 1083 "parse.y"
  4572. {
  4573.           yyval.ttype = yyvsp[-1].ttype; 
  4574.           pedwarn ("old style placement syntax, use () instead");
  4575.         ;
  4576.     break;}
  4577. case 180:
  4578. #line 1091 "parse.y"
  4579. { yyval.ttype = yyvsp[-1].ttype; ;
  4580.     break;}
  4581. case 181:
  4582. #line 1093 "parse.y"
  4583. { yyval.ttype = NULL_TREE; ;
  4584.     break;}
  4585. case 182:
  4586. #line 1095 "parse.y"
  4587. {
  4588.           cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
  4589.           yyval.ttype = error_mark_node;
  4590.         ;
  4591.     break;}
  4592. case 183:
  4593. #line 1103 "parse.y"
  4594. {
  4595.           if (flag_ansi)
  4596.             pedwarn ("ANSI C++ forbids initialization of new expression with `='");
  4597.           yyval.ttype = yyvsp[0].ttype;
  4598.         ;
  4599.     break;}
  4600. case 184:
  4601. #line 1113 "parse.y"
  4602. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4603.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4604.           yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype, 
  4605.                      NULL_TREE); ;
  4606.     break;}
  4607. case 185:
  4608. #line 1118 "parse.y"
  4609. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4610.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4611.           yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4612.     break;}
  4613. case 187:
  4614. #line 1126 "parse.y"
  4615. { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
  4616.     break;}
  4617. case 188:
  4618. #line 1128 "parse.y"
  4619.           tree init = build_nt (CONSTRUCTOR, NULL_TREE,
  4620.                     nreverse (yyvsp[-2].ttype)); 
  4621.           if (flag_ansi)
  4622.             pedwarn ("ANSI C++ forbids constructor-expressions");
  4623.           /* Indicate that this was a GNU C constructor expression.  */
  4624.           TREE_HAS_CONSTRUCTOR (init) = 1;
  4625.  
  4626.           yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
  4627.         ;
  4628.     break;}
  4629. case 190:
  4630. #line 1143 "parse.y"
  4631. { yyval.ttype = build_headof (yyvsp[-1].ttype); ;
  4632.     break;}
  4633. case 191:
  4634. #line 1145 "parse.y"
  4635. { yyval.ttype = build_classof (yyvsp[-1].ttype); ;
  4636.     break;}
  4637. case 192:
  4638. #line 1147 "parse.y"
  4639. { if (is_aggr_typedef (yyvsp[-1].ttype, 1))
  4640.             {
  4641.               tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
  4642.               if (! IS_SIGNATURE(type))
  4643.             yyval.ttype = CLASSTYPE_DOSSIER (type);
  4644.               else
  4645.             {
  4646.               sorry ("signature name as argument of `classof'");
  4647.               yyval.ttype = error_mark_node;
  4648.             }
  4649.             }
  4650.           else
  4651.             yyval.ttype = error_mark_node;
  4652.         ;
  4653.     break;}
  4654. case 194:
  4655. #line 1167 "parse.y"
  4656. { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
  4657.     break;}
  4658. case 195:
  4659. #line 1169 "parse.y"
  4660. { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
  4661.     break;}
  4662. case 196:
  4663. #line 1171 "parse.y"
  4664. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4665.     break;}
  4666. case 197:
  4667. #line 1173 "parse.y"
  4668. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4669.     break;}
  4670. case 198:
  4671. #line 1175 "parse.y"
  4672. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4673.     break;}
  4674. case 199:
  4675. #line 1177 "parse.y"
  4676. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4677.     break;}
  4678. case 200:
  4679. #line 1179 "parse.y"
  4680. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4681.     break;}
  4682. case 201:
  4683. #line 1181 "parse.y"
  4684. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4685.     break;}
  4686. case 202:
  4687. #line 1183 "parse.y"
  4688. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4689.     break;}
  4690. case 203:
  4691. #line 1185 "parse.y"
  4692. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4693.     break;}
  4694. case 204:
  4695. #line 1187 "parse.y"
  4696. { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4697.     break;}
  4698. case 205:
  4699. #line 1189 "parse.y"
  4700. { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4701.     break;}
  4702. case 206:
  4703. #line 1191 "parse.y"
  4704. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4705.     break;}
  4706. case 207:
  4707. #line 1193 "parse.y"
  4708. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4709.     break;}
  4710. case 208:
  4711. #line 1195 "parse.y"
  4712. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4713.     break;}
  4714. case 209:
  4715. #line 1197 "parse.y"
  4716. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4717.     break;}
  4718. case 210:
  4719. #line 1199 "parse.y"
  4720. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4721.     break;}
  4722. case 211:
  4723. #line 1201 "parse.y"
  4724. { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4725.     break;}
  4726. case 212:
  4727. #line 1203 "parse.y"
  4728. { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4729.     break;}
  4730. case 213:
  4731. #line 1205 "parse.y"
  4732. { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  4733.     break;}
  4734. case 214:
  4735. #line 1207 "parse.y"
  4736. { yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); ;
  4737.     break;}
  4738. case 215:
  4739. #line 1209 "parse.y"
  4740. { register tree rval;
  4741.           if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
  4742.                          make_node (yyvsp[-1].code))))
  4743.             yyval.ttype = rval;
  4744.           else
  4745.             yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
  4746.     break;}
  4747. case 216:
  4748. #line 1216 "parse.y"
  4749. { yyval.ttype = build_throw (NULL_TREE); ;
  4750.     break;}
  4751. case 217:
  4752. #line 1218 "parse.y"
  4753. { yyval.ttype = build_throw (yyvsp[0].ttype); ;
  4754.     break;}
  4755. case 218:
  4756. #line 1236 "parse.y"
  4757. { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4758.     break;}
  4759. case 226:
  4760. #line 1251 "parse.y"
  4761. { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
  4762.     break;}
  4763. case 227:
  4764. #line 1253 "parse.y"
  4765. { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
  4766.     break;}
  4767. case 228:
  4768. #line 1255 "parse.y"
  4769. { yyval.ttype = yyvsp[-1].ttype; ;
  4770.     break;}
  4771. case 231:
  4772. #line 1262 "parse.y"
  4773. { push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
  4774.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  4775.     break;}
  4776. case 232:
  4777. #line 1265 "parse.y"
  4778. { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
  4779.     break;}
  4780. case 233:
  4781. #line 1270 "parse.y"
  4782. {
  4783.           if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
  4784.             yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
  4785.           else if (IDENTIFIER_OPNAME_P (yyval.ttype))
  4786.             {
  4787.               tree op = yyval.ttype;
  4788.               yyval.ttype = lookup_name (op, 0);
  4789.               if (yyval.ttype == NULL_TREE)
  4790.             {
  4791.               if (op != ansi_opname[ERROR_MARK])
  4792.                 error ("operator %s not defined",
  4793.                    operator_name_string (op));
  4794.               yyval.ttype = error_mark_node;
  4795.             }
  4796.             }
  4797.           else
  4798.             yyval.ttype = do_identifier (yyval.ttype);
  4799.         ;
  4800.     break;}
  4801. case 236:
  4802. #line 1291 "parse.y"
  4803. { yyval.ttype = combine_strings (yyval.ttype); ;
  4804.     break;}
  4805. case 237:
  4806. #line 1293 "parse.y"
  4807. { yyval.ttype = yyvsp[-1].ttype; ;
  4808.     break;}
  4809. case 238:
  4810. #line 1295 "parse.y"
  4811. { yyval.ttype = error_mark_node; ;
  4812.     break;}
  4813. case 239:
  4814. #line 1297 "parse.y"
  4815. { if (current_function_decl == 0)
  4816.             {
  4817.               error ("braced-group within expression allowed only inside a function");
  4818.               YYERROR;
  4819.             }
  4820.           keep_next_level ();
  4821.           yyval.ttype = expand_start_stmt_expr (); ;
  4822.     break;}
  4823. case 240:
  4824. #line 1305 "parse.y"
  4825. { tree rtl_exp;
  4826.           if (flag_ansi)
  4827.             pedwarn ("ANSI C++ forbids braced-groups within expressions");
  4828.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  4829.           /* The statements have side effects, so the group does.  */
  4830.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  4831.  
  4832.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  4833.             {
  4834.               /* Make a BIND_EXPR for the BLOCK already made.  */
  4835.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  4836.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  4837.               /* Remove the block from the tree at this point.
  4838.              It gets put back at the proper place
  4839.              when the BIND_EXPR is expanded.  */
  4840.               delete_block (yyvsp[-1].ttype);
  4841.             }
  4842.           else
  4843.             yyval.ttype = yyvsp[-1].ttype;
  4844.         ;
  4845.     break;}
  4846. case 241:
  4847. #line 1326 "parse.y"
  4848. { /* [eichin:19911016.1902EST] */
  4849.                   yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl); 
  4850.                   /* here we instantiate_class_template as needed... */
  4851.                   do_pending_templates ();
  4852.                 ;
  4853.     break;}
  4854. case 242:
  4855. #line 1330 "parse.y"
  4856. {
  4857.                   if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
  4858.                       && TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
  4859.                 yyval.ttype = require_complete_type (yyvsp[-1].ttype);
  4860.                   else
  4861.                     yyval.ttype = yyvsp[-1].ttype;
  4862.                 ;
  4863.     break;}
  4864. case 243:
  4865. #line 1338 "parse.y"
  4866. {
  4867.           yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
  4868.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  4869.               && TREE_TYPE (yyval.ttype) != void_type_node)
  4870.             yyval.ttype = require_complete_type (yyval.ttype);
  4871.                 ;
  4872.     break;}
  4873. case 244:
  4874. #line 1345 "parse.y"
  4875. { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
  4876.     break;}
  4877. case 245:
  4878. #line 1347 "parse.y"
  4879. { /* If we get an OFFSET_REF, turn it into what it really
  4880.              means (e.g., a COMPONENT_REF).  This way if we've got,
  4881.              say, a reference to a static member that's being operated
  4882.              on, we don't end up trying to find a member operator for
  4883.              the class it's in.  */
  4884.           if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4885.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4886.           yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
  4887.     break;}
  4888. case 246:
  4889. #line 1356 "parse.y"
  4890. { if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4891.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4892.           yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
  4893.     break;}
  4894. case 247:
  4895. #line 1361 "parse.y"
  4896. { if (current_class_decl)
  4897.             {
  4898. #ifdef WARNING_ABOUT_CCD
  4899.               TREE_USED (current_class_decl) = 1;
  4900. #endif
  4901.               yyval.ttype = current_class_decl;
  4902.             }
  4903.           else if (current_function_decl
  4904.                && DECL_STATIC_FUNCTION_P (current_function_decl))
  4905.             {
  4906.               error ("`this' is unavailable for static member functions");
  4907.               yyval.ttype = error_mark_node;
  4908.             }
  4909.           else
  4910.             {
  4911.               if (current_function_decl)
  4912.             error ("invalid use of `this' in non-member function");
  4913.               else
  4914.             error ("invalid use of `this' at top level");
  4915.               yyval.ttype = error_mark_node;
  4916.             }
  4917.         ;
  4918.     break;}
  4919. case 248:
  4920. #line 1384 "parse.y"
  4921. {
  4922.           tree type;
  4923.           tree id = yyval.ttype;
  4924.  
  4925.           /* This is a C cast in C++'s `functional' notation.  */
  4926.           if (yyvsp[-1].ttype == error_mark_node)
  4927.             {
  4928.               yyval.ttype = error_mark_node;
  4929.               break;
  4930.             }
  4931. #if 0
  4932.           if (yyvsp[-1].ttype == NULL_TREE)
  4933.             {
  4934.               error ("cannot cast null list to type `%s'",
  4935.                      IDENTIFIER_POINTER (TYPE_NAME (id)));
  4936.               yyval.ttype = error_mark_node;
  4937.               break;
  4938.             }
  4939. #endif
  4940. #if 0
  4941.           /* type is not set! (mrs) */
  4942.           if (type == error_mark_node)
  4943.             yyval.ttype = error_mark_node;
  4944.           else
  4945. #endif
  4946.             {
  4947.               if (id == ridpointers[(int) RID_CONST])
  4948.                 type = build_type_variant (integer_type_node, 1, 0);
  4949.               else if (id == ridpointers[(int) RID_VOLATILE])
  4950.                 type = build_type_variant (integer_type_node, 0, 1);
  4951. #if 0
  4952.               /* should not be able to get here (mrs) */
  4953.               else if (id == ridpointers[(int) RID_FRIEND])
  4954.                 {
  4955.                   error ("cannot cast expression to `friend' type");
  4956.                   yyval.ttype = error_mark_node;
  4957.                   break;
  4958.                 }
  4959. #endif
  4960.               else my_friendly_abort (79);
  4961.               yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
  4962.             }
  4963.         ;
  4964.     break;}
  4965. case 250:
  4966. #line 1429 "parse.y"
  4967. { tree type = groktypename (yyvsp[-4].ttype);
  4968.           yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
  4969.     break;}
  4970. case 251:
  4971. #line 1432 "parse.y"
  4972. { tree type = groktypename (yyvsp[-4].ttype);
  4973.           yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
  4974.     break;}
  4975. case 252:
  4976. #line 1435 "parse.y"
  4977. { tree type = groktypename (yyvsp[-4].ttype);
  4978.           yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
  4979.     break;}
  4980. case 253:
  4981. #line 1438 "parse.y"
  4982. { tree type = groktypename (yyvsp[-4].ttype);
  4983.           yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
  4984.     break;}
  4985. case 254:
  4986. #line 1441 "parse.y"
  4987. { yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
  4988.     break;}
  4989. case 255:
  4990. #line 1443 "parse.y"
  4991. { tree type = groktypename (yyvsp[-1].ttype);
  4992.           yyval.ttype = get_typeid (type); ;
  4993.     break;}
  4994. case 256:
  4995. #line 1446 "parse.y"
  4996. {
  4997.         do_scoped_id:
  4998.           yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
  4999.           if (yychar == YYEMPTY)
  5000.             yychar = YYLEX;
  5001.           if (! yyval.ttype)
  5002.             {
  5003.               if (yychar == '(' || yychar == LEFT_RIGHT)
  5004.             yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  5005.               else
  5006.             {
  5007.               if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
  5008.                 error ("undeclared variable `%s' (first use here)",
  5009.                    IDENTIFIER_POINTER (yyvsp[0].ttype));
  5010.               yyval.ttype = error_mark_node;
  5011.               /* Prevent repeated error messages.  */
  5012.               IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  5013.             }
  5014.             }
  5015.           else
  5016.             {
  5017.               if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
  5018.             assemble_external (TREE_OPERAND (yyval.ttype, 0));
  5019.               else
  5020.             assemble_external (yyval.ttype);
  5021.               TREE_USED (yyval.ttype) = 1;
  5022.             }
  5023.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  5024.             {
  5025.               /* XXX CHS - should we set TREE_USED of the constant? */
  5026.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  5027.               /* This is to prevent an enum whose value is 0
  5028.              from being considered a null pointer constant.  */
  5029.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  5030.               TREE_CONSTANT (yyval.ttype) = 1;
  5031.             }
  5032.  
  5033.         ;
  5034.     break;}
  5035. case 257:
  5036. #line 1485 "parse.y"
  5037. {
  5038.           got_scope = NULL_TREE;
  5039.           if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
  5040.             goto do_scoped_id;
  5041.           yyval.ttype = yyvsp[0].ttype;
  5042.         ;
  5043.     break;}
  5044. case 258:
  5045. #line 1492 "parse.y"
  5046. { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
  5047.     break;}
  5048. case 259:
  5049. #line 1494 "parse.y"
  5050. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
  5051.     break;}
  5052. case 260:
  5053. #line 1496 "parse.y"
  5054. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
  5055.     break;}
  5056. case 261:
  5057. #line 1498 "parse.y"
  5058. { yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
  5059.     break;}
  5060. case 262:
  5061. #line 1500 "parse.y"
  5062. { yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
  5063.     break;}
  5064. case 263:
  5065. #line 1502 "parse.y"
  5066. {
  5067. #if 0
  5068.           /* This is a future direction of this code, but because
  5069.              build_x_function_call cannot always undo what is done
  5070.              in build_component_ref entirely yet, we cannot do this. */
  5071.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
  5072.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5073.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5074.             yyval.ttype = require_complete_type (yyval.ttype);
  5075. #else
  5076.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
  5077.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5078. #endif
  5079.         ;
  5080.     break;}
  5081. case 264:
  5082. #line 1517 "parse.y"
  5083. {
  5084. #if 0
  5085.           /* This is a future direction of this code, but because
  5086.              build_x_function_call cannot always undo what is done
  5087.              in build_component_ref entirely yet, we cannot do this. */
  5088.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
  5089.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5090.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5091.             yyval.ttype = require_complete_type (yyval.ttype);
  5092. #else
  5093.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
  5094.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5095. #endif
  5096.         ;
  5097.     break;}
  5098. case 265:
  5099. #line 1532 "parse.y"
  5100. {
  5101.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
  5102.             {
  5103.               warning ("signature name in scope resolution ignored");
  5104.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
  5105.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5106.             }
  5107.           else
  5108.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  5109.         ;
  5110.     break;}
  5111. case 266:
  5112. #line 1543 "parse.y"
  5113. {
  5114.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
  5115.             {
  5116.               warning ("signature name in scope resolution ignored");
  5117.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
  5118.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5119.             }
  5120.           else
  5121.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
  5122.         ;
  5123.     break;}
  5124. case 267:
  5125. #line 1555 "parse.y"
  5126.           if (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype)) 
  5127.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype))))
  5128.             cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
  5129.           yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
  5130.         ;
  5131.     break;}
  5132. case 268:
  5133. #line 1562 "parse.y"
  5134.           if (yyvsp[-4].ttype != yyvsp[-1].ttype)
  5135.             cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
  5136.           if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
  5137.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
  5138.             cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
  5139.           yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
  5140.         ;
  5141.     break;}
  5142. case 269:
  5143. #line 1611 "parse.y"
  5144. { yyval.itype = 0; ;
  5145.     break;}
  5146. case 270:
  5147. #line 1613 "parse.y"
  5148. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5149.     break;}
  5150. case 271:
  5151. #line 1617 "parse.y"
  5152. { yyval.itype = 0; ;
  5153.     break;}
  5154. case 272:
  5155. #line 1619 "parse.y"
  5156. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5157.     break;}
  5158. case 273:
  5159. #line 1624 "parse.y"
  5160. { yyval.ttype = true_node; ;
  5161.     break;}
  5162. case 274:
  5163. #line 1626 "parse.y"
  5164. { yyval.ttype = false_node; ;
  5165.     break;}
  5166. case 276:
  5167. #line 1633 "parse.y"
  5168. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5169.     break;}
  5170. case 277:
  5171. #line 1638 "parse.y"
  5172. {
  5173.           if (! current_function_parms_stored)
  5174.             store_parm_decls ();
  5175.           setup_vtbl_ptr ();
  5176.           /* Always keep the BLOCK node associated with the outermost
  5177.              pair of curley braces of a function.  These are needed
  5178.              for correct operation of dwarfout.c.  */
  5179.           keep_next_level ();
  5180.         ;
  5181.     break;}
  5182. case 279:
  5183. #line 1651 "parse.y"
  5184. {
  5185.           yyval.ttype = build_x_arrow (yyval.ttype);
  5186.         ;
  5187.     break;}
  5188. case 280:
  5189. #line 1659 "parse.y"
  5190. { tree d = get_decl_list (yyvsp[-2].ttype);
  5191.           int yes = suspend_momentary ();
  5192.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5193.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5194.           resume_momentary (yes);
  5195.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5196.             note_got_semicolon (yyvsp[-2].ttype);
  5197.         ;
  5198.     break;}
  5199. case 281:
  5200. #line 1668 "parse.y"
  5201. { tree d = yyvsp[-2].ttype;
  5202.           int yes = suspend_momentary ();
  5203.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5204.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5205.           resume_momentary (yes);
  5206.           note_list_got_semicolon (yyvsp[-2].ttype);
  5207.         ;
  5208.     break;}
  5209. case 282:
  5210. #line 1676 "parse.y"
  5211. {
  5212.           resume_momentary (yyvsp[-1].itype);
  5213.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5214.             note_got_semicolon (yyvsp[-2].ttype);
  5215.         ;
  5216.     break;}
  5217. case 283:
  5218. #line 1682 "parse.y"
  5219. {
  5220.           resume_momentary (yyvsp[-1].itype);
  5221.           note_list_got_semicolon (yyvsp[-2].ttype);
  5222.         ;
  5223.     break;}
  5224. case 284:
  5225. #line 1687 "parse.y"
  5226. { resume_momentary (yyvsp[-1].itype); ;
  5227.     break;}
  5228. case 285:
  5229. #line 1689 "parse.y"
  5230. {
  5231.           shadow_tag (yyvsp[-1].ttype);
  5232.           note_list_got_semicolon (yyvsp[-1].ttype);
  5233.         ;
  5234.     break;}
  5235. case 286:
  5236. #line 1694 "parse.y"
  5237. { warning ("empty declaration"); ;
  5238.     break;}
  5239. case 289:
  5240. #line 1708 "parse.y"
  5241. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
  5242.                      NULL_TREE); ;
  5243.     break;}
  5244. case 290:
  5245. #line 1711 "parse.y"
  5246. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), 
  5247.                      NULL_TREE); ;
  5248.     break;}
  5249. case 291:
  5250. #line 1718 "parse.y"
  5251. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5252.     break;}
  5253. case 292:
  5254. #line 1720 "parse.y"
  5255. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5256.     break;}
  5257. case 293:
  5258. #line 1722 "parse.y"
  5259. { yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  5260.     break;}
  5261. case 294:
  5262. #line 1724 "parse.y"
  5263. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5264.     break;}
  5265. case 295:
  5266. #line 1726 "parse.y"
  5267. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5268.     break;}
  5269. case 298:
  5270. #line 1739 "parse.y"
  5271. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5272.     break;}
  5273. case 299:
  5274. #line 1741 "parse.y"
  5275. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5276.     break;}
  5277. case 300:
  5278. #line 1743 "parse.y"
  5279. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5280.     break;}
  5281. case 301:
  5282. #line 1745 "parse.y"
  5283. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5284.     break;}
  5285. case 302:
  5286. #line 1747 "parse.y"
  5287. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype, 
  5288.                        chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
  5289.     break;}
  5290. case 303:
  5291. #line 1753 "parse.y"
  5292. { if (extra_warnings)
  5293.             warning ("`%s' is not at beginning of declaration",
  5294.                  IDENTIFIER_POINTER (yyval.ttype));
  5295.           yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5296.     break;}
  5297. case 304:
  5298. #line 1758 "parse.y"
  5299. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5300.     break;}
  5301. case 305:
  5302. #line 1760 "parse.y"
  5303. { if (extra_warnings)
  5304.             warning ("`%s' is not at beginning of declaration",
  5305.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5306.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5307.     break;}
  5308. case 306:
  5309. #line 1772 "parse.y"
  5310. { TREE_STATIC (yyval.ttype) = 1; ;
  5311.     break;}
  5312. case 307:
  5313. #line 1774 "parse.y"
  5314. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  5315.     break;}
  5316. case 308:
  5317. #line 1776 "parse.y"
  5318. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5319.           TREE_STATIC (yyval.ttype) = 1; ;
  5320.     break;}
  5321. case 309:
  5322. #line 1779 "parse.y"
  5323. { if (extra_warnings && TREE_STATIC (yyval.ttype))
  5324.             warning ("`%s' is not at beginning of declaration",
  5325.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5326.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5327.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  5328.     break;}
  5329. case 310:
  5330. #line 1795 "parse.y"
  5331. { yyval.ttype = get_decl_list (yyval.ttype); ;
  5332.     break;}
  5333. case 311:
  5334. #line 1797 "parse.y"
  5335. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5336.     break;}
  5337. case 312:
  5338. #line 1799 "parse.y"
  5339. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5340.     break;}
  5341. case 313:
  5342. #line 1801 "parse.y"
  5343. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5344.     break;}
  5345. case 314:
  5346. #line 1806 "parse.y"
  5347. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5348.     break;}
  5349. case 315:
  5350. #line 1808 "parse.y"
  5351. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5352.     break;}
  5353. case 319:
  5354. #line 1819 "parse.y"
  5355. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
  5356.           if (flag_ansi)
  5357.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5358.     break;}
  5359. case 320:
  5360. #line 1823 "parse.y"
  5361. { yyval.ttype = groktypename (yyvsp[-1].ttype);
  5362.           if (flag_ansi)
  5363.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5364.     break;}
  5365. case 321:
  5366. #line 1827 "parse.y"
  5367. { tree type = TREE_TYPE (yyvsp[-1].ttype);
  5368.  
  5369.           if (IS_AGGR_TYPE (type))
  5370.             {
  5371.               sorry ("sigof type specifier");
  5372.               yyval.ttype = type;
  5373.             }
  5374.           else
  5375.             {
  5376.               error ("`sigof' applied to non-aggregate expression");
  5377.               yyval.ttype = error_mark_node;
  5378.             }
  5379.         ;
  5380.     break;}
  5381. case 322:
  5382. #line 1841 "parse.y"
  5383. { tree type = groktypename (yyvsp[-1].ttype);
  5384.  
  5385.           if (IS_AGGR_TYPE (type))
  5386.             {
  5387.               sorry ("sigof type specifier");
  5388.               yyval.ttype = type;
  5389.             }
  5390.           else
  5391.             {
  5392.               error("`sigof' applied to non-aggregate type");
  5393.               yyval.ttype = error_mark_node;
  5394.             }
  5395.         ;
  5396.     break;}
  5397. case 332:
  5398. #line 1880 "parse.y"
  5399. { yyval.ttype = NULL_TREE; ;
  5400.     break;}
  5401. case 333:
  5402. #line 1882 "parse.y"
  5403. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
  5404.     break;}
  5405. case 334:
  5406. #line 1887 "parse.y"
  5407. { current_declspecs = yyvsp[-5].ttype;
  5408.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5409.             current_declspecs = get_decl_list (current_declspecs);
  5410.           if (have_extern_spec && !used_extern_spec)
  5411.             {
  5412.               current_declspecs = decl_tree_cons
  5413.             (NULL_TREE, get_identifier ("extern"), 
  5414.              current_declspecs);
  5415.               used_extern_spec = 1;
  5416.             }
  5417.           yyvsp[0].itype = suspend_momentary ();
  5418.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5419.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5420.     break;}
  5421. case 335:
  5422. #line 1902 "parse.y"
  5423. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5424.           yyval.itype = yyvsp[-2].itype; ;
  5425.     break;}
  5426. case 336:
  5427. #line 1905 "parse.y"
  5428. { tree d;
  5429.           current_declspecs = yyvsp[-4].ttype;
  5430.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5431.             current_declspecs = get_decl_list (current_declspecs);
  5432.           if (have_extern_spec && !used_extern_spec)
  5433.             {
  5434.               current_declspecs = decl_tree_cons
  5435.             (NULL_TREE, get_identifier ("extern"), 
  5436.              current_declspecs);
  5437.               used_extern_spec = 1;
  5438.             }
  5439.           yyval.itype = suspend_momentary ();
  5440.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5441.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5442.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5443.     break;}
  5444. case 337:
  5445. #line 1924 "parse.y"
  5446. { yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5447.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5448.     break;}
  5449. case 338:
  5450. #line 1928 "parse.y"
  5451. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
  5452.     break;}
  5453. case 339:
  5454. #line 1930 "parse.y"
  5455. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5456.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype);
  5457.           finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5458.     break;}
  5459. case 340:
  5460. #line 1937 "parse.y"
  5461. { current_declspecs = yyvsp[-5].ttype;
  5462.           yyvsp[0].itype = suspend_momentary ();
  5463.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5464.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5465.     break;}
  5466. case 341:
  5467. #line 1943 "parse.y"
  5468. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5469.           yyval.itype = yyvsp[-2].itype; ;
  5470.     break;}
  5471. case 342:
  5472. #line 1946 "parse.y"
  5473. { tree d;
  5474.           current_declspecs = yyvsp[-4].ttype;
  5475.           yyval.itype = suspend_momentary ();
  5476.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5477.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5478.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5479.     break;}
  5480. case 343:
  5481. #line 1956 "parse.y"
  5482. { current_declspecs = NULL_TREE;
  5483.           yyvsp[0].itype = suspend_momentary ();
  5484.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5485.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5486.     break;}
  5487. case 344:
  5488. #line 1962 "parse.y"
  5489. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5490.           yyval.itype = yyvsp[-2].itype; ;
  5491.     break;}
  5492. case 345:
  5493. #line 1965 "parse.y"
  5494. { tree d;
  5495.           current_declspecs = NULL_TREE;
  5496.           yyval.itype = suspend_momentary ();
  5497.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5498.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5499.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5500.     break;}
  5501. case 346:
  5502. #line 1977 "parse.y"
  5503. { yyval.ttype = NULL_TREE; ;
  5504.     break;}
  5505. case 347:
  5506. #line 1979 "parse.y"
  5507. { yyval.ttype = yyvsp[0].ttype; ;
  5508.     break;}
  5509. case 348:
  5510. #line 1984 "parse.y"
  5511. { yyval.ttype = yyvsp[0].ttype; ;
  5512.     break;}
  5513. case 349:
  5514. #line 1986 "parse.y"
  5515. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  5516.     break;}
  5517. case 350:
  5518. #line 1991 "parse.y"
  5519. { yyval.ttype = yyvsp[-2].ttype; ;
  5520.     break;}
  5521. case 351:
  5522. #line 1996 "parse.y"
  5523. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5524.     break;}
  5525. case 352:
  5526. #line 1998 "parse.y"
  5527. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5528.     break;}
  5529. case 353:
  5530. #line 2003 "parse.y"
  5531. { yyval.ttype = NULL_TREE; ;
  5532.     break;}
  5533. case 354:
  5534. #line 2005 "parse.y"
  5535. { yyval.ttype = yyvsp[0].ttype; ;
  5536.     break;}
  5537. case 355:
  5538. #line 2007 "parse.y"
  5539. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  5540.     break;}
  5541. case 356:
  5542. #line 2009 "parse.y"
  5543. { yyval.ttype = tree_cons (yyvsp[-5].ttype, NULL_TREE, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  5544.     break;}
  5545. case 357:
  5546. #line 2011 "parse.y"
  5547. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
  5548.     break;}
  5549. case 362:
  5550. #line 2027 "parse.y"
  5551. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5552.     break;}
  5553. case 363:
  5554. #line 2029 "parse.y"
  5555. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5556.     break;}
  5557. case 365:
  5558. #line 2035 "parse.y"
  5559. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  5560.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5561.     break;}
  5562. case 366:
  5563. #line 2038 "parse.y"
  5564. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
  5565.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5566.     break;}
  5567. case 367:
  5568. #line 2041 "parse.y"
  5569. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
  5570.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5571.     break;}
  5572. case 368:
  5573. #line 2044 "parse.y"
  5574. { yyval.ttype = NULL_TREE; ;
  5575.     break;}
  5576. case 369:
  5577. #line 2051 "parse.y"
  5578. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  5579.     break;}
  5580. case 370:
  5581. #line 2053 "parse.y"
  5582. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5583.     break;}
  5584. case 371:
  5585. #line 2056 "parse.y"
  5586. { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5587.     break;}
  5588. case 372:
  5589. #line 2058 "parse.y"
  5590. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5591.     break;}
  5592. case 373:
  5593. #line 2060 "parse.y"
  5594. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  5595.     break;}
  5596. case 374:
  5597. #line 2062 "parse.y"
  5598. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5599.     break;}
  5600. case 375:
  5601. #line 2067 "parse.y"
  5602. { yyvsp[0].itype = suspend_momentary ();
  5603.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  5604.     break;}
  5605. case 376:
  5606. #line 2070 "parse.y"
  5607. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5608.           resume_momentary ((int) yyvsp[-4].itype);
  5609.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5610.     break;}
  5611. case 377:
  5612. #line 2074 "parse.y"
  5613. { yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
  5614.           check_for_missing_semicolon (yyval.ttype); ;
  5615.     break;}
  5616. case 378:
  5617. #line 2077 "parse.y"
  5618. { yyvsp[0].itype = suspend_momentary ();
  5619.           yyval.ttype = start_enum (make_anon_name ()); ;
  5620.     break;}
  5621. case 379:
  5622. #line 2080 "parse.y"
  5623. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5624.           resume_momentary ((int) yyvsp[-5].itype);
  5625.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5626.     break;}
  5627. case 380:
  5628. #line 2084 "parse.y"
  5629. { yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
  5630.           check_for_missing_semicolon (yyval.ttype); ;
  5631.     break;}
  5632. case 381:
  5633. #line 2087 "parse.y"
  5634. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5635.     break;}
  5636. case 382:
  5637. #line 2089 "parse.y"
  5638. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5639.     break;}
  5640. case 383:
  5641. #line 2093 "parse.y"
  5642. {
  5643.           int semi;
  5644.           tree id;
  5645.  
  5646. #if 0
  5647.           /* Need to rework class nesting in the
  5648.              presence of nested classes, etc.  */
  5649.           shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
  5650. #endif
  5651.           if (yychar == YYEMPTY)
  5652.             yychar = YYLEX;
  5653.           semi = yychar == ';';
  5654.           /* finish_struct nukes this anyway; if
  5655.              finish_exception does too, then it can go. */
  5656.           if (semi)
  5657.             note_got_semicolon (yyval.ttype);
  5658.  
  5659.           if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
  5660.             /* $$ = $1 from default rule.  */;
  5661.           else if (CLASSTYPE_DECLARED_EXCEPTION (yyval.ttype))
  5662.             {
  5663.             }
  5664.           else
  5665.             {
  5666.               yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
  5667.               if (semi) note_got_semicolon (yyval.ttype);
  5668.             }
  5669.  
  5670.           pop_obstacks ();
  5671.  
  5672.           id = TYPE_IDENTIFIER (yyval.ttype);
  5673.           if (id && IDENTIFIER_TEMPLATE (id))
  5674.             {
  5675.               tree decl;
  5676.  
  5677.               /* I don't know if the copying of this TYPE_DECL is
  5678.                * really needed.  However, it's such a small per-
  5679.                * formance penalty that the extra safety is a bargain.
  5680.                * - niklas@appli.se
  5681.                */
  5682.               push_obstacks (&permanent_obstack, &permanent_obstack);
  5683.               decl = copy_node (lookup_name (id, 0));
  5684.               if (DECL_LANG_SPECIFIC (decl))
  5685.             copy_lang_decl (decl);
  5686.               pop_obstacks ();
  5687.               undo_template_name_overload (id, 0);
  5688.               pushdecl_top_level (decl);
  5689.             }
  5690.           if (! semi)
  5691.             check_for_missing_semicolon (yyval.ttype); ;
  5692.     break;}
  5693. case 384:
  5694. #line 2144 "parse.y"
  5695. {
  5696. #if 0
  5697.   /* It's no longer clear what the following error is supposed to
  5698.      accomplish.  If it turns out to be needed, add a comment why.  */
  5699.           if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype))
  5700.             {
  5701.               error ("incomplete definition of type `%s'",
  5702.                  TYPE_NAME_STRING (yyval.ttype));
  5703.               yyval.ttype = error_mark_node;
  5704.             }
  5705. #endif
  5706.         ;
  5707.     break;}
  5708. case 388:
  5709. #line 2166 "parse.y"
  5710. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  5711.     break;}
  5712. case 390:
  5713. #line 2171 "parse.y"
  5714. { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5715.     break;}
  5716. case 391:
  5717. #line 2173 "parse.y"
  5718. { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5719.     break;}
  5720. case 392:
  5721. #line 2175 "parse.y"
  5722. { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5723.     break;}
  5724. case 393:
  5725. #line 2177 "parse.y"
  5726. { error ("no body nor ';' separates two class, struct or union declarations"); ;
  5727.     break;}
  5728. case 394:
  5729. #line 2182 "parse.y"
  5730.           yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype; 
  5731.           if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
  5732.             instantiate_class_template (yyval.ttype, 2);
  5733.         ;
  5734.     break;}
  5735. case 395:
  5736. #line 2191 "parse.y"
  5737. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5738.     break;}
  5739. case 396:
  5740. #line 2193 "parse.y"
  5741. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5742.     break;}
  5743. case 397:
  5744. #line 2195 "parse.y"
  5745. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5746.     break;}
  5747. case 398:
  5748. #line 2197 "parse.y"
  5749. { yyungetc ('{', 1);
  5750.         aggr2:
  5751.           current_aggr = yyval.ttype;
  5752.           yyval.ttype = yyvsp[-1].ttype;
  5753.           overload_template_name (yyval.ttype, 0); ;
  5754.     break;}
  5755. case 399:
  5756. #line 2203 "parse.y"
  5757. { yyungetc (':', 1); goto aggr2; ;
  5758.     break;}
  5759. case 401:
  5760. #line 2209 "parse.y"
  5761. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5762.     break;}
  5763. case 402:
  5764. #line 2213 "parse.y"
  5765. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
  5766.     break;}
  5767. case 403:
  5768. #line 2216 "parse.y"
  5769. { yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE); ;
  5770.     break;}
  5771. case 404:
  5772. #line 2221 "parse.y"
  5773. {
  5774.           if (yyvsp[0].ttype)
  5775.             yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype, 1);
  5776.           else
  5777.             yyval.ttype = yyvsp[-1].ttype;
  5778.         ;
  5779.     break;}
  5780. case 405:
  5781. #line 2230 "parse.y"
  5782. {
  5783.           if (yyvsp[0].ttype)
  5784.             yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
  5785.           else
  5786.             yyval.ttype = yyvsp[-1].ttype;
  5787.         ;
  5788.     break;}
  5789. case 406:
  5790. #line 2239 "parse.y"
  5791. { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
  5792.           yyungetc ('{', 1); ;
  5793.     break;}
  5794. case 409:
  5795. #line 2247 "parse.y"
  5796. { yyval.ttype = NULL_TREE; ;
  5797.     break;}
  5798. case 410:
  5799. #line 2249 "parse.y"
  5800. { yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
  5801.     break;}
  5802. case 411:
  5803. #line 2251 "parse.y"
  5804. { yyval.ttype = yyvsp[0].ttype; ;
  5805.     break;}
  5806. case 413:
  5807. #line 2257 "parse.y"
  5808. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5809.     break;}
  5810. case 414:
  5811. #line 2262 "parse.y"
  5812. {
  5813.           tree type;
  5814.          do_base_class1:
  5815.           type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
  5816.           if (! is_aggr_typedef (yyval.ttype, 1))
  5817.             yyval.ttype = NULL_TREE;
  5818.           else if (current_aggr == signature_type_node
  5819.                && (! type) && (! IS_SIGNATURE (type)))
  5820.             {
  5821.               error ("class name not allowed as base signature");
  5822.               yyval.ttype = NULL_TREE;
  5823.             }
  5824.           else if (current_aggr == signature_type_node)
  5825.             {
  5826.               sorry ("signature inheritance, base type `%s' ignored",
  5827.                  IDENTIFIER_POINTER (yyval.ttype));
  5828.               yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
  5829.             }
  5830.           else if (type && IS_SIGNATURE (type))
  5831.             {
  5832.               error ("signature name not allowed as base class");
  5833.               yyval.ttype = NULL_TREE;
  5834.             }
  5835.           else
  5836.             yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
  5837.         ;
  5838.     break;}
  5839. case 415:
  5840. #line 2289 "parse.y"
  5841. {
  5842.           tree type;
  5843.          do_base_class2:
  5844.           type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
  5845.           if (current_aggr == signature_type_node)
  5846.             error ("access and source specifiers not allowed in signature");
  5847.           if (! is_aggr_typedef (yyvsp[0].ttype, 1))
  5848.             yyval.ttype = NULL_TREE;
  5849.           else if (current_aggr == signature_type_node
  5850.                && (! type) && (! IS_SIGNATURE (type)))
  5851.             {
  5852.               error ("class name not allowed as base signature");
  5853.               yyval.ttype = NULL_TREE;
  5854.             }
  5855.           else if (current_aggr == signature_type_node)
  5856.             {
  5857.               sorry ("signature inheritance, base type `%s' ignored",
  5858.                  IDENTIFIER_POINTER (yyval.ttype));
  5859.               yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
  5860.             }
  5861.           else if (type && IS_SIGNATURE (type))
  5862.             {
  5863.               error ("signature name not allowed as base class");
  5864.               yyval.ttype = NULL_TREE;
  5865.             }
  5866.           else
  5867.             yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
  5868.         ;
  5869.     break;}
  5870. case 417:
  5871. #line 2322 "parse.y"
  5872. {
  5873.           if (current_aggr == signature_type_node)
  5874.             {
  5875.               if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
  5876.             {
  5877.               sorry ("`sigof' as base signature specifier");
  5878.               /* need to return some dummy signature identifier */
  5879.               yyval.ttype = yyvsp[-1].ttype;
  5880.             }
  5881.               else
  5882.             {
  5883.               error ("`sigof' applied to non-aggregate expression");
  5884.               yyval.ttype = error_mark_node;
  5885.             }
  5886.             }
  5887.           else
  5888.             {
  5889.               error ("`sigof' in struct or class declaration");
  5890.               yyval.ttype = error_mark_node;
  5891.             }
  5892.         ;
  5893.     break;}
  5894. case 418:
  5895. #line 2344 "parse.y"
  5896. {
  5897.           if (current_aggr == signature_type_node)
  5898.             {
  5899.               if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
  5900.             {
  5901.               sorry ("`sigof' as base signature specifier");
  5902.               /* need to return some dummy signature identifier */
  5903.               yyval.ttype = yyvsp[-1].ttype;
  5904.             }
  5905.               else
  5906.             {
  5907.               error ("`sigof' applied to non-aggregate expression");
  5908.               yyval.ttype = error_mark_node;
  5909.             }
  5910.             }
  5911.           else
  5912.             {
  5913.               error ("`sigof' in struct or class declaration");
  5914.               yyval.ttype = error_mark_node;
  5915.             }
  5916.         ;
  5917.     break;}
  5918. case 420:
  5919. #line 2370 "parse.y"
  5920. { if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
  5921.             sorry ("non-virtual access");
  5922.           yyval.itype = access_default_virtual; ;
  5923.     break;}
  5924. case 421:
  5925. #line 2374 "parse.y"
  5926. { int err = 0;
  5927.           if (yyvsp[0].itype == access_protected)
  5928.             {
  5929.               warning ("`protected' access not implemented");
  5930.               yyvsp[0].itype = access_public;
  5931.               err++;
  5932.             }
  5933.           else if (yyvsp[0].itype == access_public)
  5934.             {
  5935.               if (yyvsp[-1].itype == access_private)
  5936.             {
  5937.             mixed:
  5938.               error ("base class cannot be public and private");
  5939.             }
  5940.               else if (yyvsp[-1].itype == access_default_virtual)
  5941.             yyval.itype = access_public_virtual;
  5942.             }
  5943.           else /* $2 == access_private */
  5944.             {
  5945.               if (yyvsp[-1].itype == access_public)
  5946.             goto mixed;
  5947.               else if (yyvsp[-1].itype == access_default_virtual)
  5948.             yyval.itype = access_private_virtual;
  5949.             }
  5950.         ;
  5951.     break;}
  5952. case 422:
  5953. #line 2400 "parse.y"
  5954. { if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
  5955.             sorry ("non-virtual access");
  5956.           if (yyval.itype == access_public)
  5957.             yyval.itype = access_public_virtual;
  5958.           else if (yyval.itype == access_private)
  5959.             yyval.itype = access_private_virtual; ;
  5960.     break;}
  5961. case 423:
  5962. #line 2409 "parse.y"
  5963. { tree t = yyvsp[-1].ttype;
  5964.           push_obstacks_nochange ();
  5965.           end_temporary_allocation ();
  5966.  
  5967.           if (! IS_AGGR_TYPE (t))
  5968.             {
  5969.               t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
  5970.               TYPE_NAME (t) = get_identifier ("erroneous type");
  5971.             }
  5972.           if (TYPE_SIZE (t))
  5973.             duplicate_tag_error (t);
  5974.                   if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
  5975.                     {
  5976.                       t = make_lang_type (TREE_CODE (t));
  5977.                       pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
  5978.                       yyvsp[-1].ttype = t;
  5979.                     }
  5980.           pushclass (t, 0);
  5981.           TYPE_BEING_DEFINED (t) = 1;
  5982.           /* Reset the interface data, at the earliest possible
  5983.              moment, as it might have been set via a class foo;
  5984.              before.  */
  5985.           /* Don't change signatures.  */
  5986.           if (! IS_SIGNATURE (t))
  5987.             {
  5988.               extern tree pending_vtables;
  5989.               int needs_writing;
  5990.               tree name = TYPE_IDENTIFIER (t);
  5991.  
  5992.               CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
  5993.               SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
  5994.  
  5995.               /* Record how to set the access of this class's
  5996.              virtual functions.  If write_virtuals == 2 or 3, then
  5997.              inline virtuals are ``extern inline''.  */
  5998.               switch (write_virtuals)
  5999.             {
  6000.             case 0:
  6001.             case 1:
  6002.               needs_writing = 1;
  6003.               break;
  6004.             case 2:
  6005.               needs_writing = !! value_member (name, pending_vtables);
  6006.               break;
  6007.             case 3:
  6008.               needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
  6009.                 && CLASSTYPE_INTERFACE_KNOWN (t);
  6010.               break;
  6011.             default:
  6012.               needs_writing = 0;
  6013.             }
  6014.               CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
  6015.             }
  6016. #if 0
  6017.           t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
  6018.           if (t && IDENTIFIER_TEMPLATE (t))
  6019.             overload_template_name (t, 1);
  6020. #endif
  6021.         ;
  6022.     break;}
  6023. case 424:
  6024. #line 2472 "parse.y"
  6025. { yyval.ttype = NULL_TREE; ;
  6026.     break;}
  6027. case 425:
  6028. #line 2474 "parse.y"
  6029. {
  6030.           if (current_aggr == signature_type_node)
  6031.             yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
  6032.           else
  6033.             yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
  6034.         ;
  6035.     break;}
  6036. case 426:
  6037. #line 2481 "parse.y"
  6038. {
  6039.           tree visspec = (tree) yyvsp[-2].itype;
  6040.  
  6041.           if (current_aggr == signature_type_node)
  6042.             {
  6043.               error ("access specifier not allowed in signature");
  6044.               visspec = (tree) access_public;
  6045.             }
  6046.           yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
  6047.         ;
  6048.     break;}
  6049. case 427:
  6050. #line 2492 "parse.y"
  6051. {
  6052.           if (current_aggr == signature_type_node)
  6053.             error ("access specifier not allowed in signature");
  6054.         ;
  6055.     break;}
  6056. case 428:
  6057. #line 2502 "parse.y"
  6058. { if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; 
  6059.         ;
  6060.     break;}
  6061. case 429:
  6062. #line 2505 "parse.y"
  6063. { /* In pushdecl, we created a reverse list of names
  6064.              in this binding level.  Make sure that the chain
  6065.              of what we're trying to add isn't the item itself
  6066.              (which can happen with what pushdecl's doing).  */
  6067.           if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
  6068.             {
  6069.               if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
  6070.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6071.               else
  6072.             yyval.ttype = yyvsp[0].ttype;
  6073.             }
  6074.         ;
  6075.     break;}
  6076. case 432:
  6077. #line 2523 "parse.y"
  6078. { error ("missing ';' before right brace");
  6079.           yyungetc ('}', 0); ;
  6080.     break;}
  6081. case 433:
  6082. #line 2528 "parse.y"
  6083. { yyval.ttype = finish_method (yyval.ttype); ;
  6084.     break;}
  6085. case 434:
  6086. #line 2530 "parse.y"
  6087. { yyval.ttype = finish_method (yyval.ttype); ;
  6088.     break;}
  6089. case 435:
  6090. #line 2538 "parse.y"
  6091. {
  6092.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6093.         ;
  6094.     break;}
  6095. case 436:
  6096. #line 2542 "parse.y"
  6097.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6098.         ;
  6099.     break;}
  6100. case 437:
  6101. #line 2546 "parse.y"
  6102. { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6103.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6104.     break;}
  6105. case 438:
  6106. #line 2549 "parse.y"
  6107. { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
  6108.     break;}
  6109. case 439:
  6110. #line 2551 "parse.y"
  6111. { yyval.ttype = NULL_TREE; ;
  6112.     break;}
  6113. case 440:
  6114. #line 2562 "parse.y"
  6115. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-4].ttype),
  6116.                      yyvsp[-2].ttype, yyvsp[0].ttype);
  6117.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-4].ttype), NULL_TREE, NULL_TREE,
  6118.                   NULL_TREE); ;
  6119.     break;}
  6120. case 441:
  6121. #line 2567 "parse.y"
  6122. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-2].ttype),
  6123.                      empty_parms (), yyvsp[0].ttype);
  6124.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-2].ttype), NULL_TREE, NULL_TREE,
  6125.                   NULL_TREE); ;
  6126.     break;}
  6127. case 442:
  6128. #line 2576 "parse.y"
  6129. { yyval.ttype = NULL_TREE; ;
  6130.     break;}
  6131. case 444:
  6132. #line 2579 "parse.y"
  6133. {
  6134.           /* In this context, void_type_node encodes
  6135.              friends.  They have been recorded elsewhere.  */
  6136.           if (yyval.ttype == void_type_node)
  6137.             yyval.ttype = yyvsp[0].ttype;
  6138.           else
  6139.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6140.         ;
  6141.     break;}
  6142. case 445:
  6143. #line 2591 "parse.y"
  6144. { yyval.ttype = NULL_TREE; ;
  6145.     break;}
  6146. case 447:
  6147. #line 2594 "parse.y"
  6148. {
  6149.           /* In this context, void_type_node encodes
  6150.              friends.  They have been recorded elsewhere.  */
  6151.           if (yyval.ttype == void_type_node)
  6152.             yyval.ttype = yyvsp[0].ttype;
  6153.           else
  6154.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6155.         ;
  6156.     break;}
  6157. case 452:
  6158. #line 2616 "parse.y"
  6159. { current_declspecs = yyvsp[-4].ttype;
  6160.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6161.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6162.     break;}
  6163. case 453:
  6164. #line 2620 "parse.y"
  6165. { current_declspecs = yyvsp[-6].ttype;
  6166.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6167.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6168.     break;}
  6169. case 454:
  6170. #line 2624 "parse.y"
  6171. { current_declspecs = yyvsp[-4].ttype;
  6172.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6173.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6174.     break;}
  6175. case 455:
  6176. #line 2631 "parse.y"
  6177. { current_declspecs = yyvsp[-4].ttype;
  6178.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6179.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6180.     break;}
  6181. case 456:
  6182. #line 2635 "parse.y"
  6183. { current_declspecs = yyvsp[-6].ttype;
  6184.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6185.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6186.     break;}
  6187. case 457:
  6188. #line 2639 "parse.y"
  6189. { current_declspecs = yyvsp[-4].ttype;
  6190.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6191.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6192.     break;}
  6193. case 458:
  6194. #line 2643 "parse.y"
  6195. { current_declspecs = yyvsp[-3].ttype;
  6196.           yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6197.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6198.     break;}
  6199. case 459:
  6200. #line 2650 "parse.y"
  6201. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6202.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6203.     break;}
  6204. case 460:
  6205. #line 2653 "parse.y"
  6206. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6207.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6208.     break;}
  6209. case 461:
  6210. #line 2656 "parse.y"
  6211. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6212.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6213.     break;}
  6214. case 462:
  6215. #line 2662 "parse.y"
  6216. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6217.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6218.     break;}
  6219. case 463:
  6220. #line 2665 "parse.y"
  6221. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6222.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6223.     break;}
  6224. case 464:
  6225. #line 2668 "parse.y"
  6226. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6227.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6228.     break;}
  6229. case 465:
  6230. #line 2671 "parse.y"
  6231. { yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6232.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6233.     break;}
  6234. case 467:
  6235. #line 2682 "parse.y"
  6236. { TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  6237.     break;}
  6238. case 468:
  6239. #line 2687 "parse.y"
  6240. { yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
  6241.     break;}
  6242. case 469:
  6243. #line 2689 "parse.y"
  6244. { yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
  6245.     break;}
  6246. case 470:
  6247. #line 2695 "parse.y"
  6248. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  6249.     break;}
  6250. case 471:
  6251. #line 2697 "parse.y"
  6252. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  6253.     break;}
  6254. case 472:
  6255. #line 2701 "parse.y"
  6256. {
  6257.           if (flag_ansi)
  6258.             pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
  6259.           yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
  6260.           yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
  6261.         ;
  6262.     break;}
  6263. case 473:
  6264. #line 2711 "parse.y"
  6265. { yyval.ttype = NULL_TREE; ;
  6266.     break;}
  6267. case 474:
  6268. #line 2713 "parse.y"
  6269. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6270.     break;}
  6271. case 475:
  6272. #line 2718 "parse.y"
  6273. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  6274.     break;}
  6275. case 476:
  6276. #line 2720 "parse.y"
  6277. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6278.     break;}
  6279. case 477:
  6280. #line 2728 "parse.y"
  6281. { yyval.itype = suspend_momentary (); ;
  6282.     break;}
  6283. case 478:
  6284. #line 2729 "parse.y"
  6285. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
  6286.     break;}
  6287. case 479:
  6288. #line 2736 "parse.y"
  6289. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6290.     break;}
  6291. case 480:
  6292. #line 2738 "parse.y"
  6293. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6294.     break;}
  6295. case 481:
  6296. #line 2740 "parse.y"
  6297. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6298.     break;}
  6299. case 482:
  6300. #line 2742 "parse.y"
  6301. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6302.     break;}
  6303. case 483:
  6304. #line 2744 "parse.y"
  6305. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6306.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6307.         ;
  6308.     break;}
  6309. case 485:
  6310. #line 2752 "parse.y"
  6311. {
  6312.           /* Remember that this name has been used in the class
  6313.              definition, as per [class.scope0] */
  6314.           if (current_class_type
  6315.               && TYPE_BEING_DEFINED (current_class_type)
  6316.               && ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
  6317.             {
  6318.               tree t = lookup_name (yyval.ttype, -2);
  6319.               if (t)
  6320.             pushdecl_class_level (t);
  6321.             }
  6322.         ;
  6323.     break;}
  6324. case 487:
  6325. #line 2769 "parse.y"
  6326. { yyval.ttype = yyvsp[0].ttype; ;
  6327.     break;}
  6328. case 488:
  6329. #line 2774 "parse.y"
  6330. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6331.     break;}
  6332. case 489:
  6333. #line 2776 "parse.y"
  6334. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6335.     break;}
  6336. case 490:
  6337. #line 2778 "parse.y"
  6338. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6339.     break;}
  6340. case 491:
  6341. #line 2780 "parse.y"
  6342. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6343.     break;}
  6344. case 492:
  6345. #line 2782 "parse.y"
  6346. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6347.     break;}
  6348. case 493:
  6349. #line 2784 "parse.y"
  6350. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6351.     break;}
  6352. case 494:
  6353. #line 2786 "parse.y"
  6354. { yyval.ttype = yyvsp[-1].ttype; ;
  6355.     break;}
  6356. case 495:
  6357. #line 2788 "parse.y"
  6358. { push_nested_class (TREE_TYPE (yyval.ttype), 3);
  6359.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
  6360.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6361.     break;}
  6362. case 497:
  6363. #line 2799 "parse.y"
  6364. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6365.     break;}
  6366. case 498:
  6367. #line 2801 "parse.y"
  6368. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6369.     break;}
  6370. case 499:
  6371. #line 2803 "parse.y"
  6372. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6373.     break;}
  6374. case 500:
  6375. #line 2805 "parse.y"
  6376. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6377.     break;}
  6378. case 501:
  6379. #line 2807 "parse.y"
  6380. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6381.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6382.         ;
  6383.     break;}
  6384. case 503:
  6385. #line 2815 "parse.y"
  6386. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6387.     break;}
  6388. case 504:
  6389. #line 2817 "parse.y"
  6390. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6391.     break;}
  6392. case 505:
  6393. #line 2819 "parse.y"
  6394. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6395.     break;}
  6396. case 506:
  6397. #line 2821 "parse.y"
  6398. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6399.     break;}
  6400. case 507:
  6401. #line 2823 "parse.y"
  6402. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6403.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6404.         ;
  6405.     break;}
  6406. case 509:
  6407. #line 2831 "parse.y"
  6408. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6409.     break;}
  6410. case 510:
  6411. #line 2833 "parse.y"
  6412. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6413.     break;}
  6414. case 511:
  6415. #line 2835 "parse.y"
  6416. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6417.     break;}
  6418. case 512:
  6419. #line 2837 "parse.y"
  6420. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6421.     break;}
  6422. case 513:
  6423. #line 2839 "parse.y"
  6424. { yyval.ttype = yyvsp[-1].ttype; ;
  6425.     break;}
  6426. case 514:
  6427. #line 2841 "parse.y"
  6428. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6429.     break;}
  6430. case 515:
  6431. #line 2843 "parse.y"
  6432. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6433.     break;}
  6434. case 516:
  6435. #line 2848 "parse.y"
  6436. { got_scope = NULL_TREE;
  6437.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6438.     break;}
  6439. case 517:
  6440. #line 2854 "parse.y"
  6441. { got_scope = NULL_TREE;
  6442.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6443.     break;}
  6444. case 519:
  6445. #line 2861 "parse.y"
  6446. { yyval.ttype = yyvsp[0].ttype; ;
  6447.     break;}
  6448. case 520:
  6449. #line 2866 "parse.y"
  6450. { yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
  6451.     break;}
  6452. case 521:
  6453. #line 2868 "parse.y"
  6454. { yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
  6455.     break;}
  6456. case 522:
  6457. #line 2870 "parse.y"
  6458. { yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
  6459.     break;}
  6460. case 526:
  6461. #line 2881 "parse.y"
  6462. { yyval.ttype = yyvsp[0].ttype; ;
  6463.     break;}
  6464. case 527:
  6465. #line 2888 "parse.y"
  6466. { got_scope = TREE_TYPE (yyval.ttype); ;
  6467.     break;}
  6468. case 528:
  6469. #line 2890 "parse.y"
  6470. { got_scope = TREE_TYPE (yyval.ttype); ;
  6471.     break;}
  6472. case 530:
  6473. #line 2906 "parse.y"
  6474. { yyval.ttype = yyvsp[0].ttype; ;
  6475.     break;}
  6476. case 532:
  6477. #line 2912 "parse.y"
  6478. { yyval.ttype = yyvsp[0].ttype; ;
  6479.     break;}
  6480. case 533:
  6481. #line 2917 "parse.y"
  6482. { got_scope = NULL_TREE; ;
  6483.     break;}
  6484. case 534:
  6485. #line 2919 "parse.y"
  6486. { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
  6487.     break;}
  6488. case 535:
  6489. #line 2926 "parse.y"
  6490. { got_scope = void_type_node; ;
  6491.     break;}
  6492. case 536:
  6493. #line 2932 "parse.y"
  6494. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6495.     break;}
  6496. case 537:
  6497. #line 2934 "parse.y"
  6498. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6499.     break;}
  6500. case 538:
  6501. #line 2936 "parse.y"
  6502. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6503.     break;}
  6504. case 539:
  6505. #line 2938 "parse.y"
  6506. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6507.     break;}
  6508. case 540:
  6509. #line 2940 "parse.y"
  6510. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6511.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6512.         ;
  6513.     break;}
  6514. case 541:
  6515. #line 2944 "parse.y"
  6516. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6517.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6518.         ;
  6519.     break;}
  6520. case 543:
  6521. #line 2953 "parse.y"
  6522. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6523.     break;}
  6524. case 544:
  6525. #line 2955 "parse.y"
  6526. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6527.     break;}
  6528. case 545:
  6529. #line 2961 "parse.y"
  6530. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6531.     break;}
  6532. case 546:
  6533. #line 2963 "parse.y"
  6534. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6535.     break;}
  6536. case 547:
  6537. #line 2965 "parse.y"
  6538. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6539.     break;}
  6540. case 548:
  6541. #line 2967 "parse.y"
  6542. { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
  6543.     break;}
  6544. case 549:
  6545. #line 2969 "parse.y"
  6546. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6547.     break;}
  6548. case 550:
  6549. #line 2971 "parse.y"
  6550. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6551.     break;}
  6552. case 551:
  6553. #line 2973 "parse.y"
  6554. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6555.     break;}
  6556. case 552:
  6557. #line 2975 "parse.y"
  6558. { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
  6559.     break;}
  6560. case 553:
  6561. #line 2977 "parse.y"
  6562. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6563.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6564.         ;
  6565.     break;}
  6566. case 554:
  6567. #line 2981 "parse.y"
  6568. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6569.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6570.         ;
  6571.     break;}
  6572. case 556:
  6573. #line 2990 "parse.y"
  6574. { yyval.ttype = yyvsp[-1].ttype; ;
  6575.     break;}
  6576. case 558:
  6577. #line 2994 "parse.y"
  6578. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6579.     break;}
  6580. case 559:
  6581. #line 2996 "parse.y"
  6582. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6583.     break;}
  6584. case 560:
  6585. #line 2998 "parse.y"
  6586. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6587.     break;}
  6588. case 561:
  6589. #line 3000 "parse.y"
  6590. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6591.     break;}
  6592. case 562:
  6593. #line 3002 "parse.y"
  6594. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6595.     break;}
  6596. case 563:
  6597. #line 3004 "parse.y"
  6598. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6599.     break;}
  6600. case 564:
  6601. #line 3006 "parse.y"
  6602. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6603.     break;}
  6604. case 565:
  6605. #line 3008 "parse.y"
  6606. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6607.     break;}
  6608. case 566:
  6609. #line 3010 "parse.y"
  6610. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  6611.     break;}
  6612. case 572:
  6613. #line 3032 "parse.y"
  6614. { emit_line_note (input_filename, lineno);
  6615.           pushlevel (0);
  6616.           clear_last_expr ();
  6617.           push_momentary ();
  6618.           expand_start_bindings (0); ;
  6619.     break;}
  6620. case 574:
  6621. #line 3044 "parse.y"
  6622. { if (flag_ansi)
  6623.             pedwarn ("ANSI C++ forbids label declarations"); ;
  6624.     break;}
  6625. case 577:
  6626. #line 3055 "parse.y"
  6627. { tree link;
  6628.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  6629.             {
  6630.               tree label = shadow_label (TREE_VALUE (link));
  6631.               C_DECLARED_LABEL_FLAG (label) = 1;
  6632.               declare_nonlocal_label (label);
  6633.             }
  6634.         ;
  6635.     break;}
  6636. case 578:
  6637. #line 3069 "parse.y"
  6638. {;
  6639.     break;}
  6640. case 580:
  6641. #line 3074 "parse.y"
  6642. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6643.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6644.           pop_momentary (); ;
  6645.     break;}
  6646. case 581:
  6647. #line 3078 "parse.y"
  6648. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6649.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6650.           pop_momentary (); ;
  6651.     break;}
  6652. case 582:
  6653. #line 3082 "parse.y"
  6654. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6655.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6656.           pop_momentary (); ;
  6657.     break;}
  6658. case 583:
  6659. #line 3086 "parse.y"
  6660. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6661.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6662.           pop_momentary (); ;
  6663.     break;}
  6664. case 584:
  6665. #line 3093 "parse.y"
  6666. { cond_stmt_keyword = "if"; ;
  6667.     break;}
  6668. case 585:
  6669. #line 3095 "parse.y"
  6670. { emit_line_note (input_filename, lineno);
  6671.           expand_start_cond (yyvsp[0].ttype, 0); ;
  6672.     break;}
  6673. case 587:
  6674. #line 3102 "parse.y"
  6675. { finish_stmt (); ;
  6676.     break;}
  6677. case 588:
  6678. #line 3104 "parse.y"
  6679. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6680.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6681.           pop_momentary (); ;
  6682.     break;}
  6683. case 589:
  6684. #line 3111 "parse.y"
  6685. { finish_stmt (); ;
  6686.     break;}
  6687. case 591:
  6688. #line 3117 "parse.y"
  6689. { finish_stmt (); ;
  6690.     break;}
  6691. case 592:
  6692. #line 3119 "parse.y"
  6693. {
  6694.           tree expr = yyvsp[-1].ttype;
  6695.           emit_line_note (input_filename, lineno);
  6696.           /* Do default conversion if safe and possibly important,
  6697.              in case within ({...}).  */
  6698.           if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  6699.                && lvalue_p (expr))
  6700.               || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
  6701.             expr = default_conversion (expr);
  6702.           cplus_expand_expr_stmt (expr);
  6703.           clear_momentary ();
  6704.           finish_stmt (); ;
  6705.     break;}
  6706. case 593:
  6707. #line 3132 "parse.y"
  6708. { expand_start_else (); ;
  6709.     break;}
  6710. case 594:
  6711. #line 3134 "parse.y"
  6712. { expand_end_cond ();
  6713.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6714.           poplevel (kept_level_p (), 1, 0);
  6715.           pop_momentary ();
  6716.           finish_stmt (); ;
  6717.     break;}
  6718. case 595:
  6719. #line 3140 "parse.y"
  6720. { expand_end_cond ();
  6721.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6722.           poplevel (kept_level_p (), 1, 0);
  6723.           pop_momentary ();
  6724.           finish_stmt (); ;
  6725.     break;}
  6726. case 596:
  6727. #line 3146 "parse.y"
  6728. { emit_nop ();
  6729.           emit_line_note (input_filename, lineno);
  6730.           expand_start_loop (1);
  6731.           cond_stmt_keyword = "while"; ;
  6732.     break;}
  6733. case 597:
  6734. #line 3151 "parse.y"
  6735. { expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
  6736.     break;}
  6737. case 598:
  6738. #line 3153 "parse.y"
  6739. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6740.           poplevel (kept_level_p (), 1, 0);
  6741.           pop_momentary ();
  6742.           expand_end_loop ();
  6743.           finish_stmt (); ;
  6744.     break;}
  6745. case 599:
  6746. #line 3159 "parse.y"
  6747. { emit_nop ();
  6748.           emit_line_note (input_filename, lineno);
  6749.           expand_start_loop_continue_elsewhere (1); ;
  6750.     break;}
  6751. case 600:
  6752. #line 3163 "parse.y"
  6753. { expand_loop_continue_here ();
  6754.           cond_stmt_keyword = "do"; ;
  6755.     break;}
  6756. case 601:
  6757. #line 3166 "parse.y"
  6758. { emit_line_note (input_filename, lineno);
  6759.           expand_exit_loop_if_false (0, yyvsp[-1].ttype);
  6760.           expand_end_loop ();
  6761.           clear_momentary ();
  6762.           finish_stmt (); ;
  6763.     break;}
  6764. case 602:
  6765. #line 3172 "parse.y"
  6766. { emit_nop ();
  6767.           emit_line_note (input_filename, lineno);
  6768.           if (yyvsp[0].ttype) cplus_expand_expr_stmt (yyvsp[0].ttype);
  6769.           expand_start_loop_continue_elsewhere (1); ;
  6770.     break;}
  6771. case 603:
  6772. #line 3177 "parse.y"
  6773. { emit_line_note (input_filename, lineno);
  6774.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6775.     break;}
  6776. case 604:
  6777. #line 3182 "parse.y"
  6778. { push_momentary (); ;
  6779.     break;}
  6780. case 605:
  6781. #line 3184 "parse.y"
  6782. { emit_line_note (input_filename, lineno);
  6783.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6784.           poplevel (kept_level_p (), 1, 0);
  6785.           pop_momentary ();
  6786.           expand_loop_continue_here ();
  6787.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6788.           pop_momentary ();
  6789.           expand_end_loop ();
  6790.           finish_stmt (); ;
  6791.     break;}
  6792. case 606:
  6793. #line 3194 "parse.y"
  6794. { emit_nop ();
  6795.           emit_line_note (input_filename, lineno);
  6796.           expand_start_loop_continue_elsewhere (1); ;
  6797.     break;}
  6798. case 607:
  6799. #line 3198 "parse.y"
  6800. { emit_line_note (input_filename, lineno);
  6801.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6802.     break;}
  6803. case 608:
  6804. #line 3203 "parse.y"
  6805. { push_momentary ();
  6806.           yyvsp[0].itype = lineno; ;
  6807.     break;}
  6808. case 609:
  6809. #line 3206 "parse.y"
  6810. { emit_line_note (input_filename, (int) yyvsp[-2].itype);
  6811.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6812.           poplevel (kept_level_p (), 1, 0);
  6813.           pop_momentary ();
  6814.           expand_loop_continue_here ();
  6815.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6816.           pop_momentary ();
  6817.           expand_end_loop ();
  6818.           finish_stmt ();
  6819.         ;
  6820.     break;}
  6821. case 610:
  6822. #line 3217 "parse.y"
  6823. { emit_line_note (input_filename, lineno);
  6824.           c_expand_start_case (yyvsp[-1].ttype);
  6825.           /* Don't let the tree nodes for $4 be discarded by
  6826.              clear_momentary during the parsing of the next stmt.  */
  6827.           push_momentary (); ;
  6828.     break;}
  6829. case 611:
  6830. #line 3223 "parse.y"
  6831. { expand_end_case (yyvsp[-3].ttype);
  6832.           pop_momentary ();
  6833.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6834.           poplevel (kept_level_p (), 1, 0);
  6835.           pop_momentary ();
  6836.           finish_stmt (); ;
  6837.     break;}
  6838. case 612:
  6839. #line 3230 "parse.y"
  6840. { register tree value = check_cp_case_value (yyvsp[-1].ttype);
  6841.           register tree label
  6842.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6843.  
  6844.           if (value != error_mark_node)
  6845.             {
  6846.               tree duplicate;
  6847.               int success = pushcase (value, convert_and_check,
  6848.                           label, &duplicate);
  6849.               if (success == 1)
  6850.             cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
  6851.               else if (success == 2)
  6852.             {
  6853.               cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
  6854.               cp_error_at ("`%E' previously used here", duplicate);
  6855.             }
  6856.               else if (success == 3)
  6857.             warning ("case value out of range");
  6858.               else if (success == 5)
  6859.             cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
  6860.             }
  6861.           define_case_label (label);
  6862.         ;
  6863.     break;}
  6864. case 614:
  6865. #line 3255 "parse.y"
  6866. { register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
  6867.           register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
  6868.           register tree label
  6869.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6870.  
  6871.           if (flag_ansi)
  6872.             pedwarn ("ANSI C++ forbids range expressions in switch statement");
  6873.           if (value1 != error_mark_node
  6874.               && value2 != error_mark_node)
  6875.             {
  6876.               tree duplicate;
  6877.               int success = pushcase_range (value1, value2,
  6878.                             convert_and_check, label,
  6879.                             &duplicate);
  6880.               if (success == 1)
  6881.             error ("case label not within a switch statement");
  6882.               else if (success == 2)
  6883.             {
  6884.               error ("duplicate (or overlapping) case value");
  6885.               error_with_decl (duplicate, "this is the first entry overlapping that value");
  6886.             }
  6887.               else if (success == 3)
  6888.             warning ("case value out of range");
  6889.               else if (success == 4)
  6890.             warning ("empty range specified");
  6891.               else if (success == 5)
  6892.             error ("case label within scope of cleanup or variable array");
  6893.             }
  6894.           define_case_label (label);
  6895.         ;
  6896.     break;}
  6897. case 616:
  6898. #line 3287 "parse.y"
  6899. {
  6900.           tree duplicate;
  6901.           register tree label
  6902.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6903.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  6904.           if (success == 1)
  6905.             error ("default label not within a switch statement");
  6906.           else if (success == 2)
  6907.             {
  6908.               error ("multiple default labels in one switch");
  6909.               error_with_decl (duplicate, "this is the first default label");
  6910.             }
  6911.           define_case_label (NULL_TREE);
  6912.         ;
  6913.     break;}
  6914. case 618:
  6915. #line 3303 "parse.y"
  6916. { emit_line_note (input_filename, lineno);
  6917.           if ( ! expand_exit_something ())
  6918.             error ("break statement not within loop or switch"); ;
  6919.     break;}
  6920. case 619:
  6921. #line 3307 "parse.y"
  6922. { emit_line_note (input_filename, lineno);
  6923.           if (! expand_continue_loop (0))
  6924.             error ("continue statement not within a loop"); ;
  6925.     break;}
  6926. case 620:
  6927. #line 3311 "parse.y"
  6928. { emit_line_note (input_filename, lineno);
  6929.           c_expand_return (NULL_TREE); ;
  6930.     break;}
  6931. case 621:
  6932. #line 3314 "parse.y"
  6933. { emit_line_note (input_filename, lineno);
  6934.           c_expand_return (yyvsp[-1].ttype);
  6935.           finish_stmt ();
  6936.         ;
  6937.     break;}
  6938. case 622:
  6939. #line 3319 "parse.y"
  6940. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  6941.           emit_line_note (input_filename, lineno);
  6942.           expand_asm (yyvsp[-2].ttype);
  6943.           finish_stmt ();
  6944.         ;
  6945.     break;}
  6946. case 623:
  6947. #line 3326 "parse.y"
  6948. { if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
  6949.           emit_line_note (input_filename, lineno);
  6950.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  6951.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  6952.                      input_filename, lineno);
  6953.           finish_stmt ();
  6954.         ;
  6955.     break;}
  6956. case 624:
  6957. #line 3335 "parse.y"
  6958. { if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
  6959.           emit_line_note (input_filename, lineno);
  6960.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  6961.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  6962.                      input_filename, lineno);
  6963.           finish_stmt ();
  6964.         ;
  6965.     break;}
  6966. case 625:
  6967. #line 3345 "parse.y"
  6968. { if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
  6969.           emit_line_note (input_filename, lineno);
  6970.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  6971.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  6972.                      input_filename, lineno);
  6973.           finish_stmt ();
  6974.         ;
  6975.     break;}
  6976. case 626:
  6977. #line 3353 "parse.y"
  6978. { emit_line_note (input_filename, lineno);
  6979.           expand_computed_goto (yyvsp[-1].ttype); ;
  6980.     break;}
  6981. case 627:
  6982. #line 3356 "parse.y"
  6983. { tree decl;
  6984.           emit_line_note (input_filename, lineno);
  6985.           decl = lookup_label (yyvsp[-1].ttype);
  6986.           TREE_USED (decl) = 1;
  6987.           expand_goto (decl); ;
  6988.     break;}
  6989. case 628:
  6990. #line 3362 "parse.y"
  6991. { finish_stmt (); ;
  6992.     break;}
  6993. case 629:
  6994. #line 3364 "parse.y"
  6995. { error ("label must be followed by statement");
  6996.           yyungetc ('}', 0);
  6997.           finish_stmt (); ;
  6998.     break;}
  6999. case 630:
  7000. #line 3368 "parse.y"
  7001. { finish_stmt (); ;
  7002.     break;}
  7003. case 632:
  7004. #line 3374 "parse.y"
  7005. { expand_start_try_stmts (); ;
  7006.     break;}
  7007. case 633:
  7008. #line 3376 "parse.y"
  7009. { expand_end_try_stmts ();
  7010.           expand_start_all_catch (); ;
  7011.     break;}
  7012. case 634:
  7013. #line 3379 "parse.y"
  7014. { expand_end_all_catch (); ;
  7015.     break;}
  7016. case 635:
  7017. #line 3387 "parse.y"
  7018. { expand_end_bindings (0,1,1);
  7019.           poplevel (2,0,0);
  7020.         ;
  7021.     break;}
  7022. case 636:
  7023. #line 3391 "parse.y"
  7024. { expand_end_bindings (0,1,1);
  7025.           poplevel (2,0,0);
  7026.         ;
  7027.     break;}
  7028. case 637:
  7029. #line 3395 "parse.y"
  7030. { expand_end_bindings (0,1,1);
  7031.           poplevel (2,0,0);
  7032.         ;
  7033.     break;}
  7034. case 639:
  7035. #line 3403 "parse.y"
  7036. { emit_line_note (input_filename, lineno); ;
  7037.     break;}
  7038. case 640:
  7039. #line 3405 "parse.y"
  7040. { expand_end_catch_block (); ;
  7041.     break;}
  7042. case 643:
  7043. #line 3415 "parse.y"
  7044. { expand_start_catch_block (NULL_TREE, NULL_TREE); ;
  7045.     break;}
  7046. case 644:
  7047. #line 3427 "parse.y"
  7048. { expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
  7049.                         TREE_VALUE (yyvsp[-1].ttype)); ;
  7050.     break;}
  7051. case 645:
  7052. #line 3433 "parse.y"
  7053. { tree label;
  7054.         do_label:
  7055.           label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  7056.           if (label)
  7057.             expand_label (label);
  7058.         ;
  7059.     break;}
  7060. case 646:
  7061. #line 3440 "parse.y"
  7062. { goto do_label; ;
  7063.     break;}
  7064. case 647:
  7065. #line 3442 "parse.y"
  7066. { goto do_label; ;
  7067.     break;}
  7068. case 648:
  7069. #line 3447 "parse.y"
  7070. { yyval.ttype = NULL_TREE; ;
  7071.     break;}
  7072. case 649:
  7073. #line 3449 "parse.y"
  7074. { yyval.ttype = yyvsp[-1].ttype; ;
  7075.     break;}
  7076. case 650:
  7077. #line 3451 "parse.y"
  7078. { yyval.ttype = NULL_TREE; ;
  7079.     break;}
  7080. case 651:
  7081. #line 3456 "parse.y"
  7082. { yyval.itype = 0; ;
  7083.     break;}
  7084. case 652:
  7085. #line 3458 "parse.y"
  7086. { yyval.itype = 0; ;
  7087.     break;}
  7088. case 653:
  7089. #line 3460 "parse.y"
  7090. { yyval.itype = 1; ;
  7091.     break;}
  7092. case 654:
  7093. #line 3462 "parse.y"
  7094. { yyval.itype = -1; ;
  7095.     break;}
  7096. case 655:
  7097. #line 3469 "parse.y"
  7098. { emit_line_note (input_filename, lineno);
  7099.           yyval.ttype = NULL_TREE; ;
  7100.     break;}
  7101. case 656:
  7102. #line 3472 "parse.y"
  7103. { emit_line_note (input_filename, lineno); ;
  7104.     break;}
  7105. case 657:
  7106. #line 3477 "parse.y"
  7107. { yyval.ttype = NULL_TREE; ;
  7108.     break;}
  7109. case 659:
  7110. #line 3480 "parse.y"
  7111. { yyval.ttype = NULL_TREE; ;
  7112.     break;}
  7113. case 660:
  7114. #line 3486 "parse.y"
  7115. { yyval.ttype = NULL_TREE; ;
  7116.     break;}
  7117. case 663:
  7118. #line 3493 "parse.y"
  7119. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7120.     break;}
  7121. case 664:
  7122. #line 3498 "parse.y"
  7123. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
  7124.     break;}
  7125. case 665:
  7126. #line 3503 "parse.y"
  7127. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
  7128.     break;}
  7129. case 666:
  7130. #line 3505 "parse.y"
  7131. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  7132.     break;}
  7133. case 667:
  7134. #line 3515 "parse.y"
  7135. {
  7136.           if (strict_prototype)
  7137.             yyval.ttype = void_list_node;
  7138.           else
  7139.             yyval.ttype = NULL_TREE;
  7140.         ;
  7141.     break;}
  7142. case 669:
  7143. #line 3523 "parse.y"
  7144. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7145.           TREE_PARMLIST (yyval.ttype) = 1; ;
  7146.     break;}
  7147. case 670:
  7148. #line 3531 "parse.y"
  7149. {
  7150.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7151.           TREE_PARMLIST (yyval.ttype) = 1;
  7152.         ;
  7153.     break;}
  7154. case 671:
  7155. #line 3536 "parse.y"
  7156. {
  7157.           TREE_PARMLIST (yyval.ttype) = 1;
  7158.         ;
  7159.     break;}
  7160. case 672:
  7161. #line 3541 "parse.y"
  7162. {
  7163.           TREE_PARMLIST (yyval.ttype) = 1;
  7164.         ;
  7165.     break;}
  7166. case 673:
  7167. #line 3545 "parse.y"
  7168. {
  7169.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); 
  7170.           TREE_PARMLIST (yyval.ttype) = 1;
  7171.         ;
  7172.     break;}
  7173. case 674:
  7174. #line 3550 "parse.y"
  7175. {
  7176.           /* ARM $8.2.5 has this as a boxed-off comment.  */
  7177.           if (pedantic)
  7178.             warning ("use of `...' without a first argument is non-portable");
  7179.           yyval.ttype = NULL_TREE;
  7180.         ;
  7181.     break;}
  7182. case 675:
  7183. #line 3557 "parse.y"
  7184. {
  7185.           TREE_PARMLIST (yyval.ttype) = 1;
  7186.         ;
  7187.     break;}
  7188. case 676:
  7189. #line 3561 "parse.y"
  7190. {
  7191.           TREE_PARMLIST (yyval.ttype) = 1;
  7192.         ;
  7193.     break;}
  7194. case 677:
  7195. #line 3565 "parse.y"
  7196. {
  7197.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
  7198.           TREE_PARMLIST (yyval.ttype) = 1;
  7199.         ;
  7200.     break;}
  7201. case 678:
  7202. #line 3570 "parse.y"
  7203. {
  7204.           /* This helps us recover from really nasty
  7205.              parse errors, for example, a missing right
  7206.              parenthesis.  */
  7207.           yyerror ("possibly missing ')'");
  7208.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7209.           TREE_PARMLIST (yyval.ttype) = 1;
  7210.           yyungetc (':', 0);
  7211.           yychar = ')';
  7212.         ;
  7213.     break;}
  7214. case 679:
  7215. #line 3581 "parse.y"
  7216. {
  7217.           /* This helps us recover from really nasty
  7218.              parse errors, for example, a missing right
  7219.              parenthesis.  */
  7220.           yyerror ("possibly missing ')'");
  7221.           yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7222.           TREE_PARMLIST (yyval.ttype) = 1;
  7223.           yyungetc (':', 0);
  7224.           yychar = ')';
  7225.         ;
  7226.     break;}
  7227. case 680:
  7228. #line 3596 "parse.y"
  7229. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7230.     break;}
  7231. case 681:
  7232. #line 3598 "parse.y"
  7233. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7234.     break;}
  7235. case 682:
  7236. #line 3600 "parse.y"
  7237. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7238.     break;}
  7239. case 683:
  7240. #line 3602 "parse.y"
  7241. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  7242.     break;}
  7243. case 684:
  7244. #line 3604 "parse.y"
  7245. { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
  7246.     break;}
  7247. case 686:
  7248. #line 3610 "parse.y"
  7249. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7250.     break;}
  7251. case 687:
  7252. #line 3633 "parse.y"
  7253. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7254.     break;}
  7255. case 688:
  7256. #line 3635 "parse.y"
  7257. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7258.     break;}
  7259. case 689:
  7260. #line 3637 "parse.y"
  7261. { yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  7262.     break;}
  7263. case 690:
  7264. #line 3639 "parse.y"
  7265. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7266.     break;}
  7267. case 691:
  7268. #line 3641 "parse.y"
  7269. { yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
  7270.     break;}
  7271. case 692:
  7272. #line 3643 "parse.y"
  7273. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7274.     break;}
  7275. case 693:
  7276. #line 3648 "parse.y"
  7277. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7278.     break;}
  7279. case 694:
  7280. #line 3650 "parse.y"
  7281. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7282.     break;}
  7283. case 697:
  7284. #line 3659 "parse.y"
  7285. { see_typename (); ;
  7286.     break;}
  7287. case 698:
  7288. #line 3682 "parse.y"
  7289. {
  7290.           warning ("type specifier omitted for parameter");
  7291.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-1].ttype)), NULL_TREE);
  7292.         ;
  7293.     break;}
  7294. case 699:
  7295. #line 3687 "parse.y"
  7296. {
  7297.           warning ("type specifier omitted for parameter");
  7298.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
  7299.         ;
  7300.     break;}
  7301. case 700:
  7302. #line 3695 "parse.y"
  7303. { yyval.ttype = NULL_TREE; ;
  7304.     break;}
  7305. case 701:
  7306. #line 3697 "parse.y"
  7307. { yyval.ttype = yyvsp[-1].ttype; ;
  7308.     break;}
  7309. case 702:
  7310. #line 3702 "parse.y"
  7311. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  7312.     break;}
  7313. case 704:
  7314. #line 3708 "parse.y"
  7315. {
  7316.           TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
  7317.           yyval.ttype = yyvsp[0].ttype;
  7318.         ;
  7319.     break;}
  7320. case 705:
  7321. #line 3716 "parse.y"
  7322. { yyval.ttype = NULL_TREE; ;
  7323.     break;}
  7324. case 706:
  7325. #line 3718 "parse.y"
  7326. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7327.     break;}
  7328. case 707:
  7329. #line 3720 "parse.y"
  7330. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7331.     break;}
  7332. case 708:
  7333. #line 3722 "parse.y"
  7334. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  7335.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  7336.         ;
  7337.     break;}
  7338. case 709:
  7339. #line 3728 "parse.y"
  7340. { got_scope = NULL_TREE; ;
  7341.     break;}
  7342. case 710:
  7343. #line 3733 "parse.y"
  7344. { yyval.ttype = ansi_opname[MULT_EXPR]; ;
  7345.     break;}
  7346. case 711:
  7347. #line 3735 "parse.y"
  7348. { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
  7349.     break;}
  7350. case 712:
  7351. #line 3737 "parse.y"
  7352. { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
  7353.     break;}
  7354. case 713:
  7355. #line 3739 "parse.y"
  7356. { yyval.ttype = ansi_opname[PLUS_EXPR]; ;
  7357.     break;}
  7358. case 714:
  7359. #line 3741 "parse.y"
  7360. { yyval.ttype = ansi_opname[MINUS_EXPR]; ;
  7361.     break;}
  7362. case 715:
  7363. #line 3743 "parse.y"
  7364. { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
  7365.     break;}
  7366. case 716:
  7367. #line 3745 "parse.y"
  7368. { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
  7369.     break;}
  7370. case 717:
  7371. #line 3747 "parse.y"
  7372. { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
  7373.     break;}
  7374. case 718:
  7375. #line 3749 "parse.y"
  7376. { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
  7377.     break;}
  7378. case 719:
  7379. #line 3751 "parse.y"
  7380. { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
  7381.     break;}
  7382. case 720:
  7383. #line 3753 "parse.y"
  7384. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7385.     break;}
  7386. case 721:
  7387. #line 3755 "parse.y"
  7388. { yyval.ttype = ansi_opname[LT_EXPR]; ;
  7389.     break;}
  7390. case 722:
  7391. #line 3757 "parse.y"
  7392. { yyval.ttype = ansi_opname[GT_EXPR]; ;
  7393.     break;}
  7394. case 723:
  7395. #line 3759 "parse.y"
  7396. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7397.     break;}
  7398. case 724:
  7399. #line 3761 "parse.y"
  7400. { yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
  7401.     break;}
  7402. case 725:
  7403. #line 3763 "parse.y"
  7404. { yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
  7405.     break;}
  7406. case 726:
  7407. #line 3765 "parse.y"
  7408. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7409.     break;}
  7410. case 727:
  7411. #line 3767 "parse.y"
  7412. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7413.     break;}
  7414. case 728:
  7415. #line 3769 "parse.y"
  7416. { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
  7417.     break;}
  7418. case 729:
  7419. #line 3771 "parse.y"
  7420. { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
  7421.     break;}
  7422. case 730:
  7423. #line 3773 "parse.y"
  7424. { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
  7425.     break;}
  7426. case 731:
  7427. #line 3775 "parse.y"
  7428. { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
  7429.     break;}
  7430. case 732:
  7431. #line 3777 "parse.y"
  7432. { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
  7433.     break;}
  7434. case 733:
  7435. #line 3779 "parse.y"
  7436. { yyval.ttype = ansi_opname[COND_EXPR]; ;
  7437.     break;}
  7438. case 734:
  7439. #line 3781 "parse.y"
  7440. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7441.     break;}
  7442. case 735:
  7443. #line 3783 "parse.y"
  7444. { yyval.ttype = ansi_opname[COMPONENT_REF]; ;
  7445.     break;}
  7446. case 736:
  7447. #line 3785 "parse.y"
  7448. { yyval.ttype = ansi_opname[MEMBER_REF]; ;
  7449.     break;}
  7450. case 737:
  7451. #line 3787 "parse.y"
  7452. { yyval.ttype = ansi_opname[CALL_EXPR]; ;
  7453.     break;}
  7454. case 738:
  7455. #line 3789 "parse.y"
  7456. { yyval.ttype = ansi_opname[ARRAY_REF]; ;
  7457.     break;}
  7458. case 739:
  7459. #line 3791 "parse.y"
  7460. { yyval.ttype = ansi_opname[NEW_EXPR]; ;
  7461.     break;}
  7462. case 740:
  7463. #line 3793 "parse.y"
  7464. { yyval.ttype = ansi_opname[DELETE_EXPR]; ;
  7465.     break;}
  7466. case 741:
  7467. #line 3795 "parse.y"
  7468. { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
  7469.     break;}
  7470. case 742:
  7471. #line 3797 "parse.y"
  7472. { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
  7473.     break;}
  7474. case 743:
  7475. #line 3800 "parse.y"
  7476. { yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7477.     break;}
  7478. case 744:
  7479. #line 3802 "parse.y"
  7480. { yyval.ttype = ansi_opname[ERROR_MARK]; ;
  7481.     break;}
  7482. }
  7483.    /* the action file gets copied in in place of this dollarsign */
  7484. #line 480 "/usr/local/lib/bison.simple"
  7485.  
  7486.   yyvsp -= yylen;
  7487.   yyssp -= yylen;
  7488. #ifdef YYLSP_NEEDED
  7489.   yylsp -= yylen;
  7490. #endif
  7491.  
  7492. #if YYDEBUG != 0
  7493.   if (yydebug)
  7494.     {
  7495.       short *ssp1 = yyss - 1;
  7496.       fprintf (stderr, "state stack now");
  7497.       while (ssp1 != yyssp)
  7498.     fprintf (stderr, " %d", *++ssp1);
  7499.       fprintf (stderr, "\n");
  7500.     }
  7501. #endif
  7502.  
  7503.   *++yyvsp = yyval;
  7504.  
  7505. #ifdef YYLSP_NEEDED
  7506.   yylsp++;
  7507.   if (yylen == 0)
  7508.     {
  7509.       yylsp->first_line = yylloc.first_line;
  7510.       yylsp->first_column = yylloc.first_column;
  7511.       yylsp->last_line = (yylsp-1)->last_line;
  7512.       yylsp->last_column = (yylsp-1)->last_column;
  7513.       yylsp->text = 0;
  7514.     }
  7515.   else
  7516.     {
  7517.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  7518.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  7519.     }
  7520. #endif
  7521.  
  7522.   /* Now "shift" the result of the reduction.
  7523.      Determine what state that goes to,
  7524.      based on the state we popped back to
  7525.      and the rule number reduced by.  */
  7526.  
  7527.   yyn = yyr1[yyn];
  7528.  
  7529.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  7530.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  7531.     yystate = yytable[yystate];
  7532.   else
  7533.     yystate = yydefgoto[yyn - YYNTBASE];
  7534.  
  7535.   goto yynewstate;
  7536.  
  7537. yyerrlab:   /* here on detecting error */
  7538.  
  7539.   if (! yyerrstatus)
  7540.     /* If not already recovering from an error, report this error.  */
  7541.     {
  7542.       ++yynerrs;
  7543.  
  7544. #ifdef YYERROR_VERBOSE
  7545.       yyn = yypact[yystate];
  7546.  
  7547.       if (yyn > YYFLAG && yyn < YYLAST)
  7548.     {
  7549.       int size = 0;
  7550.       char *msg;
  7551.       int x, count;
  7552.  
  7553.       count = 0;
  7554.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  7555.       for (x = (yyn < 0 ? -yyn : 0);
  7556.            x < (sizeof(yytname) / sizeof(char *)); x++)
  7557.         if (yycheck[x + yyn] == x)
  7558.           size += strlen(yytname[x]) + 15, count++;
  7559.       msg = (char *) malloc(size + 15);
  7560.       if (msg != 0)
  7561.         {
  7562.           strcpy(msg, "parse error");
  7563.  
  7564.           if (count < 5)
  7565.         {
  7566.           count = 0;
  7567.           for (x = (yyn < 0 ? -yyn : 0);
  7568.                x < (sizeof(yytname) / sizeof(char *)); x++)
  7569.             if (yycheck[x + yyn] == x)
  7570.               {
  7571.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  7572.             strcat(msg, yytname[x]);
  7573.             strcat(msg, "'");
  7574.             count++;
  7575.               }
  7576.         }
  7577.           yyerror(msg);
  7578.           free(msg);
  7579.         }
  7580.       else
  7581.         yyerror ("parse error; also virtual memory exceeded");
  7582.     }
  7583.       else
  7584. #endif /* YYERROR_VERBOSE */
  7585.     yyerror("parse error");
  7586.     }
  7587.  
  7588.   goto yyerrlab1;
  7589. yyerrlab1:   /* here on error raised explicitly by an action */
  7590.  
  7591.   if (yyerrstatus == 3)
  7592.     {
  7593.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  7594.  
  7595.       /* return failure if at end of input */
  7596.       if (yychar == YYEOF)
  7597.     YYABORT;
  7598.  
  7599. #if YYDEBUG != 0
  7600.       if (yydebug)
  7601.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  7602. #endif
  7603.  
  7604.       yychar = YYEMPTY;
  7605.     }
  7606.  
  7607.   /* Else will try to reuse lookahead token
  7608.      after shifting the error token.  */
  7609.  
  7610.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  7611.  
  7612.   goto yyerrhandle;
  7613.  
  7614. yyerrdefault:  /* current state does not do anything special for the error token. */
  7615.  
  7616. #if 0
  7617.   /* This is wrong; only states that explicitly want error tokens
  7618.      should shift them.  */
  7619.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  7620.   if (yyn) goto yydefault;
  7621. #endif
  7622.  
  7623. yyerrpop:   /* pop the current state because it cannot handle the error token */
  7624.  
  7625.   if (yyssp == yyss) YYABORT;
  7626.   yyvsp--;
  7627.   yystate = *--yyssp;
  7628. #ifdef YYLSP_NEEDED
  7629.   yylsp--;
  7630. #endif
  7631.  
  7632. #if YYDEBUG != 0
  7633.   if (yydebug)
  7634.     {
  7635.       short *ssp1 = yyss - 1;
  7636.       fprintf (stderr, "Error: state stack now");
  7637.       while (ssp1 != yyssp)
  7638.     fprintf (stderr, " %d", *++ssp1);
  7639.       fprintf (stderr, "\n");
  7640.     }
  7641. #endif
  7642.  
  7643. yyerrhandle:
  7644.  
  7645.   yyn = yypact[yystate];
  7646.   if (yyn == YYFLAG)
  7647.     goto yyerrdefault;
  7648.  
  7649.   yyn += YYTERROR;
  7650.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  7651.     goto yyerrdefault;
  7652.  
  7653.   yyn = yytable[yyn];
  7654.   if (yyn < 0)
  7655.     {
  7656.       if (yyn == YYFLAG)
  7657.     goto yyerrpop;
  7658.       yyn = -yyn;
  7659.       goto yyreduce;
  7660.     }
  7661.   else if (yyn == 0)
  7662.     goto yyerrpop;
  7663.  
  7664.   if (yyn == YYFINAL)
  7665.     YYACCEPT;
  7666.  
  7667. #if YYDEBUG != 0
  7668.   if (yydebug)
  7669.     fprintf(stderr, "Shifting error token, ");
  7670. #endif
  7671.  
  7672.   *++yyvsp = yylval;
  7673. #ifdef YYLSP_NEEDED
  7674.   *++yylsp = yylloc;
  7675. #endif
  7676.  
  7677.   yystate = yyn;
  7678.   goto yynewstate;
  7679. }
  7680. #line 3805 "parse.y"
  7681.  
  7682.  
  7683. #ifdef SPEW_DEBUG
  7684. const char *
  7685. debug_yytranslate (value)
  7686.     int value;
  7687. {
  7688.   return yytname[YYTRANSLATE (value)];
  7689. }
  7690.  
  7691. #endif
  7692.